WPF c# 界面上有3个radiobutton和3个listview 选择不同的radiobutton出现不同的listview
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了WPF c# 界面上有3个radiobutton和3个listview 选择不同的radiobutton出现不同的listview相关的知识,希望对你有一定的参考价值。
但是现在的情况是 给它们写几条假数据后 只有第3个listview可以用,前两个listview像被禁用了似的 里面的行也不能选,按钮也不能按,这是怎么回事,该怎么改
参考技术A listview都有数据然后只显示第三个? 参考技术B 用visable 参考技术C listview1.visible=(radiobutton1.check)listview2.visible=(radiobutton2.check)
listview3.visible=(radiobutton3.check)
WPF RadioButton/ToggleButton 样式
【中文标题】WPF RadioButton/ToggleButton 样式【英文标题】:WPF RadioButton/ToggleButton styling 【发布时间】:2013-08-25 18:41:41 【问题描述】:我想模仿一组 ToggleButtons 的样式,如下图所示。任何时候都只能“选中”其中一个按钮。
我的问题与样式有关:
我想在最左边的按钮和最右边的按钮上有圆角,如图所示,但如果中间有一个按钮(如图所示),那不应该有圆角。有时可能只有两个按钮可以切换。 我需要不同状态的样式:至少是“正常/未选中”、“鼠标悬停”、“按下”和“选中”。我正在使用的当前控件是这样完成的:
<StackPanel Orientation="Horizontal" >
<RadioButton Style="StaticResource x:Type ToggleButton" Content="All" Padding="12,8,12,8" GroupName="View" />
<RadioButton Style="StaticResource x:Type ToggleButton" Content="Geolocated" Padding="12,8,12,8" GroupName="View" />
<RadioButton Style="StaticResource x:Type ToggleButton" Content="Non Geolocated" Padding="12,8,12,8" GroupName="View" />
</StackPanel>
在 StackPanel 资源中,我尝试为 ToggleButton 设置样式,但我很迷茫如何实现上图中的结果。
【问题讨论】:
【参考方案1】:这可能不是最简单/最好的方法,但我尝试使用 Kaxaml 敲出一些 ControlTemplates
,以生成如下所示的内容:
您可以将这些模板存储在 ResourceDictionary
中,并在需要时应用它们,或者在您即时构建按钮列表时使用它们。
我实际上创建了三种略有不同的样式,一种用于左右按钮,一种用于中间按钮(您可以通过扩展/继承样式来简化此操作)。省略了一些重复的代码。
<Grid>
<Grid.Resources>
<!-- Brushes for colours/backgrounds -->
<SolidColorBrush x:Key="FontBrush" Color="#DDDDDD"/>
<LinearGradientBrush x:Key="BgBrush1" StartPoint="0,0" EndPoint="0,1">
<GradientStop Offset="0" Color="#888888"/>
<GradientStop Offset="1" Color="#222222"/>
</LinearGradientBrush>
<SolidColorBrush x:Key="BorderBrush1" Color="#333333"/>
<LinearGradientBrush x:Key="CheckedBrush" StartPoint="0,0" EndPoint="0,1">
<GradientStop Offset="0" Color="#555555"/>
<GradientStop Offset="1" Color="#111111"/>
</LinearGradientBrush>
<!-- Left Button Template -->
<ControlTemplate x:Key="ToggleButtonLeft" TargetType="x:Type ToggleButton">
<Border
Name="Border"
Background="StaticResource BgBrush1"
BorderBrush="StaticResource BorderBrush1"
BorderThickness="1"
CornerRadius="5,0,0,5">
<ContentPresenter
HorizontalAlignment="Center"
Margin="TemplateBinding Padding"
VerticalAlignment="Center"
Content="TemplateBinding Content"
TextBlock.FontWeight="Bold"
TextBlock.Foreground="StaticResource FontBrush"/>
</Border>
<ControlTemplate.Triggers>
<Trigger Property="ToggleButton.IsMouseOver" Value="true">
<Setter TargetName="Border" Property="Background" Value="#808080"/>
</Trigger>
<Trigger Property="IsChecked" Value="true">
<Setter TargetName="Border" Property="Background" Value="StaticResource CheckedBrush"/>
</Trigger>
</ControlTemplate.Triggers>
</ControlTemplate>
<!-- Middle Button(s) Template -->
<ControlTemplate x:Key="ToggleButtonMid" TargetType="x:Type ToggleButton">
<Border
Name="Border"
Background="StaticResource BgBrush1"
BorderBrush="StaticResource BorderBrush1"
BorderThickness="0,1,0,1"
CornerRadius="0" />
<!-- Other code identical to Left Button Template -->
</ControlTemplate>
<!-- Right Button Template -->
<ControlTemplate x:Key="ToggleButtonRight" TargetType="x:Type ToggleButton">
<Border
Name="Border"
Background="StaticResource BgBrush1"
BorderBrush="StaticResource BorderBrush1"
BorderThickness="1"
CornerRadius="0, 5, 5, 0" />
<!-- Other code identical to Left Button Template -->
</ControlTemplate>
</Grid.Resources>
<!-- Example Usage -->
<Grid Background="#555555">
<StackPanel Height="25" Orientation="Horizontal" Margin="5">
<RadioButton Content="All" GroupName="View" Padding="2" Template="DynamicResource ToggleButtonLeft"/>
<RadioButton Content="Geolocated" GroupName="View" Padding="2" Template="DynamicResource ToggleButtonMid"/>
<RadioButton Content="Non Geolocated" GroupName="View" Padding="2" Template="DynamicResource ToggleButtonRight"/>
</StackPanel>
</Grid>
</Grid>
您必须为IsPressed
状态添加额外的Triggers
等,以及所需的任何其他内容(例如IsEnabled
)。
【讨论】:
以上是关于WPF c# 界面上有3个radiobutton和3个listview 选择不同的radiobutton出现不同的listview的主要内容,如果未能解决你的问题,请参考以下文章
在c#窗体的groupbox控件上有3个radiobotton ,怎样设置其中一个为程序运行开始时默认选中的。
WPF RadioButton/ToggleButton 样式