2021-08-08 WPF控件专题 Button控件详解
【摘要】
1.Button控件介绍
Button —ContentControl
Content
Background 背景色/图片
Foreground 前景色 文本字体 大小
2.具体案例
<...
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>
- 1
- 2
- 3
- 4
- 5
private void BtnLogin_Click(object sender, RoutedEventArgs e)
{
string name = txtUName.Text.Trim();
string pwd = txtUPwd.Password.Trim();
//登录过程 。。。
MessageBox.Show("登录成功", "登录提示", MessageBoxButton.OK,MessageBoxImage.Information);
}
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
文章来源: codeboy.blog.csdn.net,作者:愚公搬代码,版权归原作者所有,如需转载,请联系作者。
原文链接:codeboy.blog.csdn.net/article/details/119518042
【版权声明】本文为华为云社区用户转载文章,如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱:
cloudbbs@huaweicloud.com
- 点赞
- 收藏
- 关注作者
评论(0)