• 博客园logo
  • 会员
  • 众包
  • 新闻
  • 博问
  • 闪存
  • 赞助商
  • HarmonyOS
  • Chat2DB
    • 搜索
      所有博客
    • 搜索
      当前博客
  • 写随笔 我的博客 短消息 简洁模式
    用户头像
    我的博客 我的园子 账号设置 会员中心 简洁模式 ... 退出登录
    注册 登录
光脚丫思考的专栏
十年窗下无人问,一举成名天下知!
博客园    首页    新随笔    联系   管理    订阅  订阅

WPF命令参数CommandParameter

XAML代码如下:

<Window x:Class="Demo006.MainWindow"
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
        Title="MainWindow" Height="240" Width="360" WindowStyle="ToolWindow">
    <Grid>
        <Grid.RowDefinitions>
            <RowDefinition Height="24" />
            <RowDefinition Height="4" />
            <RowDefinition Height="24" />
            <RowDefinition Height="4" />
            <RowDefinition Height="24" />
            <RowDefinition Height="4" />
            <RowDefinition Height="*" />
        </Grid.RowDefinitions>
        <TextBlock  Grid.Row="0" Text="Name:" VerticalAlignment="Center" HorizontalAlignment="Left" />
        <TextBox Grid.Row="0" Name="NameTextBox" Margin="60,0,0,0" />
        <Button Grid.Row="2" Content="New Teacher" Command="New" CommandParameter="Teacher" />
        <Button Grid.Row="4" Content="New Student" Command="New" CommandParameter="Student" />
        <ListBox Grid.Row="6" Name="NewItemListBox" Height="117" VerticalAlignment="Bottom" />
    </Grid>
    <Window.CommandBindings>
        <CommandBinding Command="New"
                        CanExecute="CommandBinding_CanExecute" 
                        Executed="CommandBinding_Executed" />
    </Window.CommandBindings>
</Window>

 

相关的事件处理器代码如下所示:

private void CommandBinding_CanExecute(object sender, CanExecuteRoutedEventArgs e)
{
    if (string.IsNullOrEmpty(this.NameTextBox.Text) == true) e.CanExecute = false;
    else e.CanExecute = true;
}

private void CommandBinding_Executed(object sender, ExecutedRoutedEventArgs e)
{
    string name = this.NameTextBox.Text;
    if (e.Parameter.ToString() == "Teacher")
    {
        this.NewItemListBox.Items.Add(string.Format("New Teacher: {0}, 学而不厌,诲人不倦。", name));
    }
    else if (e.Parameter.ToString() == "Student")
    {
        this.NewItemListBox.Items.Add(string.Format("New Student: {0},好好学习,天天向上。", name));
    }
}

  

posted @ 2014-10-20 08:13  光脚丫思考  阅读(10460)  评论(0)    收藏  举报
刷新页面返回顶部
博客园  ©  2004-2025
浙公网安备 33010602011771号 浙ICP备2021040463号-3