Embedded Code in Window.xaml : Xaml « Windows Presentation Foundation « C# / C Sharp






Embedded Code in Window.xaml

Embedded Code in Window.xaml
       

<Window xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
        x:Class="EmbeddedCodeWindow"
        Title="Embed Code in XAML"
        SizeToContent="WidthAndHeight"
        ResizeMode="CanMinimize"
        Loaded="WindowOnLoaded">
    <StackPanel>

        <Button HorizontalAlignment="Center"
                Margin="24"
                Click="ButtonOnClick">
            Click the Button
        </Button>

        <Ellipse Name="elips" 
                 Width="200"
                 Height="100"
                 Margin="24" 
                 Stroke="Red"
                 StrokeThickness="10" />

        <ListBox Name="lstbox" 
                 Width="150"
                 Height="150"
                 Margin="24"
                 SelectionChanged="ListBoxOnSelection" />

        <x:Code>
        void WindowOnLoaded(object sender, RoutedEventArgs args)
        {
            foreach (System.Reflection.PropertyInfo prop in typeof(Brushes).GetProperties())
                lstbox.Items.Add(prop.Name);
        }
        void ButtonOnClick(object sender, RoutedEventArgs args)
        {
            Button btn = sender as Button;
            MessageBox.Show("The button labeled '" + btn.Content + "' has been clicked.");
        }
        void ListBoxOnSelection(object sender, SelectionChangedEventArgs args)
        {
            string strItem = lstbox.SelectedItem as string;
            System.Reflection.PropertyInfo prop = typeof(Brushes).GetProperty(strItem);
            elips.Fill = (Brush)prop.GetValue(null, null);
        }
        </x:Code>

    </StackPanel>
</Window>

   
    
    
    
    
    
    
  








Related examples in the same category

1.Property InheritanceProperty Inheritance
2.Attached PropertiesAttached Properties
3.Property Element SyntaxProperty Element Syntax
4.Xaml Button with namespaceXaml Button with namespace
5.Markup Extensions for ButtonMarkup Extensions for Button
6.Markup Extensions with Property Elements.xamlMarkup Extensions with Property Elements.xaml
7.Inner element with xml namespaceInner element with xml namespace
8.Embedded code for Application
9.Set button properties with Linq styleSet button properties with Linq style
10.Xaml and Code behindXaml and Code behind
11.Use Linq to get control from a containerUse Linq to get control from a container
12.My First WPF App with code behindMy First WPF App with code behind
13.Create Button from Xaml stringCreate Button from Xaml string
14.Reference name defined in Xaml in cs fileReference name defined in Xaml in cs file
15.Insert new line character to xaml attributeInsert new line character to xaml attribute
16.Type loader with Xaml reader