Commandline to compile WPF application : Application « Windows Presentation Foundation « C# / CSharp Tutorial






/*
# build
#
/target:winexe
/out:SimpleWPFApp.exe
/r:"C:\Program Files\Reference Assemblies\Microsoft\Framework\v3.0\WindowsBase.dll"
/r:"C:\Program Files\Reference Assemblies\Microsoft\Framework\v3.0\PresentationCore.dll"
/r:"C:\Program Files\Reference Assemblies\Microsoft\Framework\v3.0\PresentationFramework.dll"
MyWPF.cs

*/
using System;
using System.Windows;
using System.Windows.Controls;

  class MyWPFApp : Application
  {
    [STAThread]
    static void Main()
    {
      MyWPFApp app = new MyWPFApp();
      app.Startup += AppStartUp;
      app.Exit += AppExit;
      app.Run();
    }

    static void AppExit(object sender, ExitEventArgs e)
    {
      MessageBox.Show("App has exited");
    }

    static void AppStartUp(object sender, StartupEventArgs e)
    {
      MainWindow wnd = new MainWindow("My better WPF App!", 200, 300);
    }
  }
  
  class MainWindow : Window
  {
    Button btnExitApp = new Button();

    public MainWindow(string windowTitle, int height, int width)
    {
      btnExitApp.Click += new RoutedEventHandler(btnExitApp_Clicked);
      btnExitApp.Content = "Exit Application";
      btnExitApp.Height = 25;
      btnExitApp.Width = 100;
      this.AddChild(btnExitApp);

      this.Title = windowTitle;
      this.WindowStartupLocation = WindowStartupLocation.CenterScreen;
      this.Height = height;
      this.Width = width;
      this.Show();
    }

    private void btnExitApp_Clicked(object sender, RoutedEventArgs e)
    {   
      Application.Current.Shutdown();
    }
  }








24.127.Application
24.127.1.Use Application.Current.Dispatcher.Invoke to throw an exceptionUse Application.Current.Dispatcher.Invoke to throw an exception
24.127.2.(ResourceDictionary)Application.LoadComponent(ResourceDictionary)Application.LoadComponent
24.127.3.Application.GetResourceStreamApplication.GetResourceStream
24.127.4.Application Exit eventApplication Exit event
24.127.5.Handle Application DispatcherUnhandledExceptionHandle Application DispatcherUnhandledException
24.127.6.Application Startup eventApplication Startup event
24.127.7.Store the variable in the application and get it backStore the variable in the application and get it back
24.127.8.Application.Current.Windows stores all windows you createdApplication.Current.Windows stores all windows you created
24.127.9.Application.Current.ShutdownModeApplication.Current.ShutdownMode
24.127.10.Implement Application.DoEvents in WPFImplement Application.DoEvents in WPF
24.127.11.Throw Application event from button click event handlerThrow Application event from button click event handler
24.127.12.Shut down the application in Window closing eventShut down the application in Window closing event
24.127.13.Menu with Application command: cut, copy, pasteMenu with Application command: cut, copy, paste
24.127.14.Use Application Command to edit RichTextBoxUse Application Command to edit RichTextBox
24.127.15.Exit current action with Application.Current.ShutdownExit current action with Application.Current.Shutdown
24.127.16.Set and get data from Application.Current.PropertiesSet and get data from Application.Current.Properties
24.127.17.Localizable Application by putting localized resource in XamlLocalizable Application by putting localized resource in Xaml
24.127.18.Application NavigationFailed eventApplication NavigationFailed event
24.127.19.Application Events SampleApplication Events Sample
24.127.20.Single Instance SampleSingle Instance Sample
24.127.21.StartupUri attributeStartupUri attribute
24.127.22.Using GetContentStreamUsing GetContentStream
24.127.23.Create and retrieve cookies from a Windows Presentation Foundation (WPF) application using SetCookie and GetCookie.Create and retrieve cookies from a Windows Presentation Foundation (WPF) application using SetCookie and GetCookie.
24.127.24.Get a handle to the current app and shut it downGet a handle to the current app and shut it down
24.127.25.extends Application
24.127.26.Commandline to compile WPF application
24.127.27.Add application exit event handler
24.127.28.Code Only WPF Application Sample
24.127.29.A Simple WPF Application, written XMAL-Free.
24.127.30.Inherit Application class and override OnStartup
24.127.31.Inherit Application class and listen to session ending event
24.127.32.Set SessionEndingCancelEventArgs.Cancel to true to cancel session ending event