摘要:
自定义模板 <ControlTemplate x:Key="ButtonStyle1" TargetType="Button"> <Border Background="Blue" CornerRadius="10"> <StackPanel Orientation="Horizontal" Hor 阅读全文
posted @ 2021-11-29 12:01
月长生
阅读(21)
评论(0)
推荐(0)
摘要:
StackPanel容器:默认竖直排列,Orientation="Horizontal"横向排列,超过就不会显示 wrapPanel:超过会自动换行 设置样式: <Window.Resources> <Style x:Key="First" TargetType="Button">//targetT 阅读全文
posted @ 2021-11-29 12:01
月长生
阅读(18)
评论(0)
推荐(0)
摘要:
ViewModel代码 public class MainViewModel { MainWindow _mainWindow; public MainViewModel(MainWindow mainWindow) { _mainWindow = mainWindow; } private str 阅读全文
posted @ 2021-11-29 12:00
月长生
阅读(294)
评论(0)
推荐(0)