WPF用户控件入门

最近在学习WPF,发现很多优秀的用户界面都有用到用户控件,学习一下简单的使用方法。用户控件就像一件出租房,自己装修,出租给用户让用户自己随意使用,但是需要签订租房合同来维护各自的权益。

1、创建一个简单的用户控件包含一个Textbox和一个Button。

<UserControl x:Class="Test.UserControl1"
             xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
             xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
             xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" 
             xmlns:d="http://schemas.microsoft.com/expression/blend/2008" 
             xmlns:local="clr-namespace:Test"
             mc:Ignorable="d" 
             d:DesignHeight="100" d:DesignWidth="200">
    <Grid Margin="0,0,0,0">
        <TextBox x:Name="textBox" HorizontalAlignment="Left" Height="23" Margin="10,10,10,0" TextWrapping="Wrap" Text="TextBox" VerticalAlignment="Top" Width="198" />
        <Button x:Name="button" Content="Button" HorizontalAlignment="Left" Margin="10,46,0,0" VerticalAlignment="Top" Width="75" Click="button_Click"/>

    </Grid>
</UserControl>
2、公布Button的Click事件,让用户可以在按钮事件里做自己想做的事。
<pre name="code" class="csharp">public partial class UserControl1 : UserControl
    {
        public event RoutedEventHandler ClickButton;

        public UserControl1()
        {
            InitializeComponent();
        }

        public void button_Click(object sender, RoutedEventArgs e)
        {
            if (ClickButton != null)
                ClickButton(sender, e);
        }
    }
3、使用用户控件。
<pre name="code" class="html"><Window x:Class="test.MainWindow"
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
        xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
        xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
        xmlns:local="clr-namespace:test"
        xmlns:WinFormHost="clr-namespace:System.Windows.Forms.Integration;assembly=WindowsFormsIntegration"
        xmlns:WinFormControls="clr-namespace:Emgu.CV.UI;assembly=Emgu.CV.UI"  
        mc:Ignorable="d"
        Title="test" Height="600" Width="800">
    <Grid ShowGridLines="True" Margin="0,10,0,0" x:Name="gridForm">
        <local:UserControl1 x:Name="uc1" />
    </Grid>
</Window>

  public MainWindow()
        {
            InitializeComponent();
            uc1.ClickButton += new RoutedEventHandler(uc_ClickButton);
        }

        private void uc_ClickButton(object sender, RoutedEventArgs e)
        {
            MessageBox.Show(uc1.textBox.Text);
        }


4、很简单浅显的例子,供自己复习参考用。

 

 


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值