Inheritance: StatLightSystemBase
示例#1
0
        // Constructor
        public MainPage()
        {
            InitializeComponent();

            Loaded += (sender, e) =>
            {
                var statLightSystem = new NormalStatLightSystem(newRootVisual => this.Content = newRootVisual);
            };
        }
示例#2
0
 private void Application_Startup(object sender, StartupEventArgs e)
 {
     var statLightSystem = new NormalStatLightSystem(newRootVisual => RootVisual = newRootVisual);
 }