2021-08-09 WPF控件专题 Button控件详解

Posted 微软MVP Eleven

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了2021-08-09 WPF控件专题 Button控件详解相关的知识,希望对你有一定的参考价值。

1.Button控件介绍

Button —ContentControl

Content

Background 背景色/图片

Foreground 前景色 文本字体 大小

2.具体案例

<Button Name="btnLogin" Content="登录" Foreground="Green"  FontStretch="ExtraExpanded"  BorderBrush="Red" BorderThickness="5" HorizontalAlignment="Left"  Margin="61,115,0,0" VerticalAlignment="Top"  Width="71"  Click="BtnLogin_Click"  >
    <Button.Background>
        <ImageBrush ImageSource="imgs/btn_bg.png" Stretch="Fill"></ImageBrush>
    </Button.Background>
</Button>
 private void BtnLogin_Click(object sender, RoutedEventArgs e)
{
    string name = txtUName.Text.Trim();
    string pwd = txtUPwd.Password.Trim();

    //登录过程 。。。
    MessageBox.Show("登录成功", "登录提示", MessageBoxButton.OK,MessageBoxImage.Information);

}

以上是关于2021-08-09 WPF控件专题 Button控件详解的主要内容,如果未能解决你的问题,请参考以下文章

2021-08-09 WPF控件专题 RadioButton控件详解

2021-08-09 WPF控件专题 XAML介绍

2021-08-09 WPF控件专题 Window窗体属性和事件

2021-08-13 WPF控件专题 ComboBox 控件详解

2021-08-19 WPF控件专题 TabControl 控件详解

2021-08-17 WPF控件专题 Groupbox 控件详解