Inheritance: StatLightSystemBase
コード例 #1
0
ファイル: MainPage.xaml.cs プロジェクト: staxmanade/StatLight
        // Constructor
        public MainPage()
        {
            InitializeComponent();

            Loaded += (sender, e) =>
            {
                var statLightSystem = new NormalStatLightSystem(newRootVisual => this.Content = newRootVisual);
            };
        }
コード例 #2
0
ファイル: App.xaml.cs プロジェクト: nnieslan/StatLight
 private void Application_Startup(object sender, StartupEventArgs e)
 {
     var statLightSystem = new NormalStatLightSystem(newRootVisual => RootVisual = newRootVisual);
 }