Embdded implementation of our button's Click event handler : Xaml « Windows Presentation Foundation « VB.Net






Embdded implementation of our button's Click event handler

Embdded implementation of our button's Click event handler
       

<Window x:Class="SimpleXamlApp.MainWindow"
  xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  Title="My Xaml App" Height="200" Width="300" WindowStartupLocation ="CenterScreen">


  <Button Width="133" Height="24" Name="btnExitApp" Click ="btnExitApp_Clicked">
    Exit Application
  </Button>

  <x:Code>
    private void btnExitApp_Clicked(object sender, RoutedEventArgs e)
    {

    Application.Current.Shutdown();
    }
  </x:Code>
</Window>

   
    
    
    
    
    
    
  








Related examples in the same category

1.A simple XAML structureA simple XAML structure
2.Properties in XAMLProperties in XAML
3.Create a Standard WPF ApplicationCreate a Standard WPF Application
4.Inline click eventInline click event
5.Inlining code within a XAML fileInlining code within a XAML file
6.Inline declaration of a simple attributeInline declaration of a simple attribute
7.Explicit declaration of a complex attributeExplicit declaration of a complex attribute
8.Button with explicitly declared Background BrushButton with explicitly declared Background Brush
9.Button with a Background Brush declared using abbreviated markupButton with a Background Brush declared using abbreviated markup
10.Example of abbreviated markup versus explicit syntaxExample of abbreviated markup versus explicit syntax
11.Using Width to constrain the size of elementsUsing Width to constrain the size of elements
12.Display Control Content Surrounded by BracesDisplay Control Content Surrounded by Braces
13.WPF provides four different units of measures:WPF provides four different units of measures:
14.Draw a line from Point(0,0) to Point (100,100) on the canvas with the default units of device-independent pixelsDraw a line from Point(0,0) to Point (100,100) on the canvas with the default units of device-independent pixels
15.My First WPF App with code behindMy First WPF App with code behind
16.Create Button from Xaml stringCreate Button from Xaml string
17.A default miter limit of 10A default miter limit of 10
18.Pure XAML RSS Reader
19.Reference name defined in Xaml in vb fileReference name defined in Xaml in vb file
20.Add child controlAdd child control
21.Show Index of ControlsShow Index of Controls
22.Clear ControlsClear Controls
23.Contains Element?Contains Element?
24.Xaml and Code behindXaml and Code behind
25.Insert new line character to xaml attributeInsert new line character to xaml attribute