Add event handler to StackPanel in StackPanel resource : Resource « Windows Presentation Foundation « C# / CSharp Tutorial






<Window x:Class="WpfApplication1.Window1"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    Title="WPF" Height="150" Width="250">
    <StackPanel>
        <Popup AllowsTransparency="True" Height="100" HorizontalOffset="1cm" Name="myPopup" 
                   Placement="Right" StaysOpen="True" Width="200" >
            <Border BorderBrush="Black" BorderThickness="2">
                <DockPanel Background="White" LastChildFill="True">
                    <TextBlock Background="AliceBlue" DockPanel.Dock="Top" 
                                   FontSize="16" HorizontalAlignment="Stretch" 
                                   Margin="5" Text="A WPF Popup" />
                        <Button Click="btnClosePopup_Click" Content="Close" 
                                DockPanel.Dock="Bottom" Margin="5" 
                                HorizontalAlignment="Right" MaxHeight="23"/>
                        <Image DockPanel.Dock="Top" Margin="5" 
                               Source="c:\image.gif" />
                    </DockPanel>
            </Border>
        </Popup>
        <StackPanel>
            <StackPanel.Resources>
                <Style TargetType="{x:Type Button}">
                    <Setter Property="Margin" Value="2" />                        
                    <EventSetter Event="Click" Handler="btnShowPopup_Click" />
                </Style>
            </StackPanel.Resources>
            <Button Content="Show Popup" Name="btnShowPopup" />
        </StackPanel>
    </StackPanel>
</Window>

//File:Window.xaml.cs
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Imaging;
using System.Windows.Navigation;
using System.Windows.Shapes;
using System.Windows.Controls.Primitives;

namespace WpfApplication1
{
    public partial class Window1 : Window
    {
        public Window1()
        {
            InitializeComponent();
        }

        private void btnClosePopup_Click(object sender, RoutedEventArgs e)
        {
            myPopup.IsOpen = false;
        }

        private void btnShowPopup_Click(object sender, RoutedEventArgs e)
        {
           
            myPopup.IsOpen = true;
        }
    }
}
WPF Add Event Handler To Stack Panel In Stack Panel Resource








24.140.Resource
24.140.1.Use outter resource or inner resourceUse outter resource or inner resource
24.140.2.Window level resourceWindow level resource
24.140.3.Button style as Window resourceButton style as Window resource
24.140.4.Event Triggers as ResourceEvent Triggers as Resource
24.140.5.Reuse Font With ResourcesReuse Font With Resources
24.140.6.Define Double value as resourceDefine Double value as resource
24.140.7.Add a logical resource to the window's resource dictionaryAdd a logical resource to the window's resource dictionary
24.140.8.Font Size ResourcesFont Size Resources
24.140.9.Use EnvironmentInfo as ResourceUse EnvironmentInfo as Resource
24.140.10.Dynamic Resource: SystemColors.InactiveCaptionBrushKeyDynamic Resource: SystemColors.InactiveCaptionBrushKey
24.140.11.Load Resource for ApplicationLoad Resource for Application
24.140.12.No Logical ResourcesNo Logical Resources
24.140.13.Logical ResourcesLogical Resources
24.140.14.Relative pack URI referring to external component for a ResourceRelative pack URI referring to external component for a Resource
24.140.15.Find Control Styles with FindResource()Find Control Styles with FindResource()
24.140.16.TextGeometry as ResourceTextGeometry as Resource
24.140.17.Retrieving assembly manifest resourcesRetrieving assembly manifest resources
24.140.18.Get Resource Names from AssemblyGet Resource Names from Assembly
24.140.19.Find Resource with FindResourceFind Resource with FindResource
24.140.20.Create Collection based Resource for data bindingCreate Collection based Resource for data binding
24.140.21.Wrap collection based resource in a CollectionViewSourceWrap collection based resource in a CollectionViewSource
24.140.22.Add event handler to StackPanel in StackPanel resourceAdd event handler to StackPanel in StackPanel resource
24.140.23.Add Event handler in Panel ResourceAdd Event handler in Panel Resource
24.140.24.DataGridView and ResourceDataGridView and Resource
24.140.25.Dynamic ResourceDynamic Resource
24.140.26.Load Assembly ResourcesLoad Assembly Resources
24.140.27.BitmapImage as ResourcesBitmapImage as Resources
24.140.28.Cropped image as ResourceCropped image as Resource
24.140.29.Load Xaml ResourceLoad Xaml Resource
24.140.30.Use Resources.Add to add static resouce from codeUse Resources.Add to add static resouce from code
24.140.31.Event Setter from ResourcesEvent Setter from Resources
24.140.32.Resource LookupResource Lookup
24.140.33.Style resource with predefined static resourceStyle resource with predefined static resource