WPF 自定义控件样式:如tabcontrol等!越多越好!
发布网友
发布时间:2022-04-26 23:31
我来回答
共2个回答
热心网友
时间:2022-04-27 11:22
Button里面可以添加内容的呀例如:
<Button>
<Grid>
<TextBox/>
<Image/>
</Grid>
</Button>
又例如可以使用模板:
<Window
xmlns=""
xmlns:x=""
x:Class="WpfApplication3.MainWindow"
x:Name="Window"
Title="MainWindow"
Width="640" Height="480">
<Window.Resources>
<ControlTemplate x:Key="ButtonControlTemplate1" TargetType="">
<Grid>
<TextBox/>
<Image/>
</Grid>
</ControlTemplate>
</Window.Resources>
<Grid x:Name="LayoutRoot">
<Button Template="" Width="100" Height="100"/>
</Grid>
</Window>
热心网友
时间:2022-04-27 12:40
Button里面可以添加内容的呀例如:
<Button>
<Grid>
<TextBox/>
<Image/>
</Grid>
</Button>
又例如可以使用模板:
<Window
xmlns=""
xmlns:x=""
x:Class="WpfApplication3.MainWindow"
x:Name="Window"
Title="MainWindow"
Width="640" Height="480">
<Window.Resources>
<ControlTemplate x:Key="ButtonControlTemplate1" TargetType="">
<Grid>
<TextBox/>
<Image/>
</Grid>
</ControlTemplate>
</Window.Resources>
<Grid x:Name="LayoutRoot">
<Button Template="" Width="100" Height="100"/>
</Grid>
</Window>
另外,站长团上有产品团购,便宜有保证