• 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));
        }
    }



  • 相关阅读:
    css !import
    算法
    java web 运动前端
    oauth 2
    js 优化
    js 代码优化 (写的可以)
    2015/08/17 《有两条均线,你应该注意》
    佳能相机操作 EDSDK 教程 C# 版本
    2015/8/14——了2000股,是否正确呢——明天待验证?
    系统架构师考试——程序计数器 PC, 指令寄存器IR、状态寄存器SR、通用寄存器GR
  • 原文地址:https://www.cnblogs.com/zfyouxi/p/4295916.html
Copyright © 2020-2023  润新知