wpf 怎么获取Template中的控件
我设置了window元素的style属性,里面编写了自己的模版但是,我该怎么获取到模版中的元素呢,求高手解答,我的程序代码如下:xaml部分:style代码<Stylex...
我设置了window元素的style属性,里面编写了自己的模版但是,我该怎么获取到模版中的元素呢,求高手解答,我的程序代码如下:
xaml部分:style代码
<Style x:Key="BaseWindow" TargetType="Window">
<Setter Property="AllowsTransparency" Value="True"/>
<Setter Property="Background" Value="Transparent"/>
<Setter Property="WindowStyle" Value="None"/>
<Setter Property="Width" Value="800"/>
<Setter Property="Height" Value="600"/>
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="Window">
<Border Margin="8" Background="White" Name="BorderWindow">
<Border.Effect>
<DropShadowEffect BlurRadius="8" ShadowDepth="0" Color="#00666666"/>
</Border.Effect>
<Grid>
<Grid.RowDefinitions>
<RowDefinition Height="30"/>
<RowDefinition Height="*"/>
<RowDefinition Height="20"/>
</Grid.RowDefinitions>
<Grid Background="Blue" Grid.Row="0">
<Button Name="BtnClose" Style="{StaticResource BtnCloseStyle}" ToolTip="关闭"/>
<Button x:Name="BtnMax" Style="{StaticResource BtnMaxStyle}"/>
<Button x:Name="BtnMin" Style="{StaticResource BtnMinStyle}"/>
</Grid>
</Grid>
</Border>
</ControlTemplate>
</Setter.Value>
</Setter>
</Style>
window标签里面设置style属性为“BaseWindow”,但在cs代码中怎么获取模版中的三个button呢 展开
xaml部分:style代码
<Style x:Key="BaseWindow" TargetType="Window">
<Setter Property="AllowsTransparency" Value="True"/>
<Setter Property="Background" Value="Transparent"/>
<Setter Property="WindowStyle" Value="None"/>
<Setter Property="Width" Value="800"/>
<Setter Property="Height" Value="600"/>
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="Window">
<Border Margin="8" Background="White" Name="BorderWindow">
<Border.Effect>
<DropShadowEffect BlurRadius="8" ShadowDepth="0" Color="#00666666"/>
</Border.Effect>
<Grid>
<Grid.RowDefinitions>
<RowDefinition Height="30"/>
<RowDefinition Height="*"/>
<RowDefinition Height="20"/>
</Grid.RowDefinitions>
<Grid Background="Blue" Grid.Row="0">
<Button Name="BtnClose" Style="{StaticResource BtnCloseStyle}" ToolTip="关闭"/>
<Button x:Name="BtnMax" Style="{StaticResource BtnMaxStyle}"/>
<Button x:Name="BtnMin" Style="{StaticResource BtnMinStyle}"/>
</Grid>
</Grid>
</Border>
</ControlTemplate>
</Setter.Value>
</Setter>
</Style>
window标签里面设置style属性为“BaseWindow”,但在cs代码中怎么获取模版中的三个button呢 展开
展开全部
在ControlTemplate中找控件最重要的就是让控件初始化到visualtree上
给你个链接做参考
http://www.cnblogs.com/midcn/archive/2011/05/24/2055276.html
给你个链接做参考
http://www.cnblogs.com/midcn/archive/2011/05/24/2055276.html
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询