Samples
Samples
SharedUI.WPF
Language: Oxygene, Platform: All, Category: SharedUI
https://github.com/remobjects/ElementsSamples/tree/master/Oxygene/All/SharedUI/SharedUI.WPF
-
SharedUI.WPF
-
References
- mscorlib
- PresentationCore
- PresentationFramework
- ReachFramework
- System
- System.Data
- System.Drawing
- System.Xaml
- System.Xml
- UIAutomationProvider
- UIAutomationTypes
- WindowsBase
- System.Core
- System.Xml.Linq
- System.Data.DataSetExtensions
- Elements
- Source Files
- Other Files
-
References
App.xaml.pas
namespace SharedUI.WPF;
uses
System.Windows,
SharedUI.Shared;
type
App = public partial class(Application)
private
var appDelegate: AppDelegate;
protected
method OnStartup(e: StartupEventArgs); override;
begin
appDelegate := new AppDelegate();
appDelegate.start();
end;
end;
end.
