次用到ListBox的时候,鼠标悬浮时,ListBoxItem的默认样式太丑了,设置了ItemTemplate也不管用,像这样的:
经过几次尝试后,终于解决了这个问题,记录一下,以后就不用到处百度找了。。。
其实很简单,只需定义一个ItemContainerStyle,即可。
<Style x:Key="ItemContainerStyle1" TargetType="ListBoxItem">
<Setter Property="SnapsToDevicePixels" Value="true"/>
<Setter Property="FocusVisualStyle" Value="{x:Null}"/>
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="ListBoxItem">
<Border Name="Border"
Padding="7"
Background="Transparent"
SnapsToDevicePixels="True">
<ContentPresenter />
</Border>
<ControlTemplate.Triggers>
<Trigger Property="IsSelected" Value="true">
<Setter TargetName="Border" Property="Background" Value="Green"/>
<Setter Property="Foreground" Value="White"/>
</Trigger>
<Trigger Property="IsEnabled" Value="false">
<Setter Property="Foreground" Value="LightGray"/>
</Trigger>
</ControlTemplate.Triggers>
</ControlTemplate>
</Setter.Value>
</Setter>
</Style>
原来只要设置了一下模板就好了。。。
刚做出来时,我心里一w头***狂奔。。。
下面是测试的代码:
<StackPanel HorizontalAlignment="Stretch" >
<TextBlock Text="{Binding CurrentItem,StringFormat={}选中项:{0}}" FontSize="18"/>
<ListBox x:Name="lbPersonList"
SelectedValue="{Binding CurrentItem}"
SelectedValuePath="Text"
ItemContainerStyle="{StaticResource ItemContainerStyle1}">
<TextBlock Text="Hello,world"/>
<TextBlock Text="你好"/>
<TextBlock Text="你也好"/>
</ListBox>
</StackPanel>
设置了绑定的选中项value的路径,这样就可以在后台代码中获取选中项了。
后台代码:
public partial class IconFontButtonDemo : Window, INotifyPropertyChanged
private string _currentItem;
public event PropertyChangedEventHandler PropertyChanged;
public string CurrentItem
get { return _currentItem; }
_currentItem = value;
PropertyChanged?.Invoke(this, new PropertyChangedEventArgs(nameof(CurrentItem)));
public IconFontButtonDemo()
InitializeComponent();
DataContext = this;
效果是这样的:
好了,就到这里了,wpf,踩坑中
Style 代码:
<SolidColorBrush x:Key="Item.MouseOver.Background" Color="Transparent"/>
<SolidColorBrush x:Key="Item.MouseOver.Border" Color="Transparent"/>
<SolidColorBrush x:Key="Item.SelectedInactive
一般我们点击listview的子item时,会有明显的变化效果,但有时候我们不
想要这个点击效果,或者是这个点击效果不是我们想要的那个颜色变化,这
就需要我们自己去设置它的点击效果:
1.去掉listview默认的点击效果:
在XML中 设置listivew的listSelector属性就可以了,把这个属性
在 WPF 中,您可以使用如下方法来解决自带的鼠标悬浮或者点击按钮时出现的蓝色遮罩:
使用自定义样式来覆盖默认样式。您可以在应用程序的资源字典中定义一个自定义样式,并将它应用到按钮控件上。
使用触发器来控制按钮的外观。您可以在按钮的样式中使用触发器来控制按钮的外观,当鼠标悬浮在按钮上或者点击按钮时,您可以使用触发器来改变按钮的背景色或者前景色。
使用附加属性来控制按钮的外观。您可以在按钮的样...
<ListBox.ItemContainerStyle>
<Style TargetType="ListBoxItem">
<Setter Property="IsSelected" Value="{Binding Content.IsSelected, Mode=TwoWay, RelativeSource={RelativeSource Self}}"/>
ListBox中DataTemplate的用法如下 。
<ListBox x:Name="areaLB" ItemsSource="{Binding AreaNumList}" SelectedItem="{Binding SelectedItem}" BorderThickness="0" Background="White">
<ListBox.Item
gridView.setSelector(new ColorDrawable(Color.TRANSPARENT));
listView.setSelector(new ColorDrawable(Color.TRANSPARENT));
方法二,在布局文件中设置listSelector属性
<GridView
androi
在View中为ListBoxItem设置PreviewMouseLeftButtonDown事件,并为IsSelected属性设置绑定。
<UserControl x:Class="_5_RoutedEventTest.Views.ListBoxTest"
xmlns="htt...
1 <Style TargetType="ListBoxItem" x:Key="oiliu">
2 <!-- 设置控件模板 -->
3 <Setter Property="Template">
4 <Setter.Value>
5 ...