Samples
Samples
Clock
Language: Oxygene, Platform: Echoes, Category: WPF
https://github.com/remobjects/ElementsSamples/tree/master/Oxygene/Echoes/WPF/Clock
-
Clock
-
References
- mscorlib
- PresentationCore
- PresentationFramework
- ReachFramework
- System
- System.Data
- System.Drawing
- System.Xml
- UIAutomationProvider
- UIAutomationTypes
- WindowsBase
- Source Files
- Other Files
-
References
MyApp.xaml.pas
namespace AvalonApplication4;
interface
uses
System.Windows,
System.Data,
System.Xml,
System.Configuration;
type
MyApp = public partial class(Application)
private
method AppStartingUp(sender: Object; e: StartingUpCancelEventArgs);
end;
implementation
method MyApp.AppStartingUp(sender: Object; e: StartingUpCancelEventArgs);
begin
var lMainWindow := new OxygeneWindow();
//
lMainWindow.Show();
end;
end.
