Samples
Samples
Oxygene Logo
Language: Oxygene, Platform: Echoes, Category: WPF
https://github.com/remobjects/ElementsSamples/tree/master/Oxygene/Echoes/WPF/Oxygene Logo
-
OxygeneLogo
-
References
- mscorlib
- PresentationCore
- PresentationFramework
- ReachFramework
- System
- System.Data
- System.Drawing
- System.Xaml
- System.Xml
- UIAutomationClient
- UIAutomationTypes
- WindowsBase
- Source Files
- Other Files
-
References
OxygeneWindow.xaml.pas
namespace OxygeneLogo;
interface
uses
System.Windows,
System.Windows.Controls,
System.Windows.Data,
System.Windows.Documents,
System.Windows.Media,
System.Windows.Navigation,
System.Windows.Shapes;
type
OxygeneWindow = public partial class(Window)
private
// To use Loaded event put the Loaded="WindowLoaded" attribute in root element of .xaml file.
// method WindowLoaded(sender: Object; e: EventArgs );
// Sample event handler:
// method ButtonClick(sender: Object; e: RoutedEventArgs);
public
constructor;
end;
implementation
constructor OxygeneWindow;
begin
InitializeComponent();
end;
end.
