gpt4 book ai didi

c# - WPF TabControl,用C#代码改变TabItem的背景颜色

转载 作者:太空狗 更新时间:2023-10-29 21:39:36 31 4
gpt4 key购买 nike

您好,我认为这是初学者的问题。我已经搜索了所有相关问题。但所有这些都由 .xaml 回答。但是,我需要的是后台代码。我有一个 TabControl。我需要设置其项目的背景颜色。当项目被选中、取消选中和悬停时,我需要为项目设置不同的颜色。非常感谢你的帮助。我想在这里发布我的代码。但是,目前我只有一个 TabControl 实例和一个名为 ActiveTabIndex 的属性。

----------------------------------------编辑1------ ----------------------------------------

我添加了一个事件 SelectionChanged

(this.myTabControl 作为 System.Windows.Controls.TabControl).SelectionChanged += TabSet_SelectionChanged;

void TabSet_SelectionChanged(object sender, System.Windows.Controls.SelectionChangedEventArgs e)
{
foreach (System.Windows.Controls.TabItem item in (this.myTabControl as System.Windows.Controls.TabControl).Items)
{
if (item == (this.myTabControl as System.Windows.Controls.TabControl).SelectedItem)
{
item.Background = System.Windows.Media.Brushes.Red;
}
else
item.Background = System.Windows.Media.Brushes.Green;
}
}

然而,我实际上只能设置绿色。所选项目的背景颜色保留为默认颜色,而不是红色。有什么提示吗?另外,我想知道如何为悬停添加事件。没有找到确切的事件。再次感谢。

--------------------编辑2-------------------- --------

经过很长很长的讨论。我已经决定(实际上不是我的决定)使用 XAML。是的。我是 WPF 的新手。所以我对此仍有疑问(对此我感到非常抱歉,请多多包涵)。问题在这里:当鼠标悬停在 TabItem 上时,我想将背景颜色更改为橙​​色。现在,当鼠标悬停在 ContentPanel 和 TabItem 上时,颜色为橙色。当鼠标仅在 TabItem 上时,我需要它是橙色的。 (我不确定我是否足够清楚。)另一个问题是我会让用户设置颜色而不是直接设置为红色。我认为我需要一些绑定(bind)。对于这个问题,我稍后肯定会谷歌。只是想说清楚。非常感谢你们所有人。真的很有帮助。

<TabItem x:Class="MyControls.Tab"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
mc:Ignorable="d"
d:DesignHeight="300" d:DesignWidth="300">
<TabItem.Style>
<Style TargetType="{x:Type TabItem}">
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="{x:Type TabItem}">
<Grid>
<Border Name="Border" Margin="0,0,-4,0" BorderThickness="1,1,1,1" CornerRadius="2,12,0,0" >
<ContentPresenter x:Name="ContentSite" VerticalAlignment="Center" HorizontalAlignment="Center" ContentSource="Header" Margin="12,2,12,2" RecognizesAccessKey="True"/>
</Border>
</Grid>
<ControlTemplate.Triggers>

<Trigger Property="IsSelected" Value="True">
<Setter Property="Panel.ZIndex" Value="100" />
<Setter TargetName="Border" Property="Background" Value="Red" />
<Setter TargetName="Border" Property="BorderThickness" Value="1,1,1,0" />
</Trigger>

<Trigger Property="IsSelected" Value="False">
<Setter TargetName="Border" Property="Background" Value="Green" />
</Trigger>
<Trigger Property="IsMouseOver" Value="True">
<Setter TargetName="Border" Property="Background" Value="Orange" />
</Trigger>

</ControlTemplate.Triggers>
</ControlTemplate>
</Setter.Value>
</Setter>
</Style>
</TabItem.Style>
</TabItem>

------------ 编辑 3 --------------

我想的还不够清楚。现在是这样的:如果鼠标在其他选项卡上,它工作正常: enter image description here

但是当鼠标悬停在圆圈区域上时,选中项的背景颜色应该是红色而不是橙色: enter image description here

----------------编辑4--------------------

感谢大家的回复。现在,在与我的用户和其他一些人进行了长时间的讨论之后,我们想动态地改变背景颜色。用户想自己设置颜色。基本上,我需要先做一些绑定(bind)(如果这是术语)。我试过以下。但是,所选选项卡没有红色背景。我用Snoop查了一下,原来是本地设置的Background为红色。我在这里有点困惑。我四处打听,有人建议我使用 TemplateBinding,因为它在 ControlTemplate 下。但是,我试图创建依赖属性和类似的东西。但是我不明白为什么我应该使用 TemplateBinding 因为我读过一些文章说它用于编译时绑定(bind)。我完全糊涂了。我是 WPF 的新手,如果问题是低级问题,我很抱歉。再次感谢!

<TabItem x:Class="MyControl.Tab"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
mc:Ignorable="d"
d:DesignHeight="300" d:DesignWidth="300">
<TabItem.Style>
<Style TargetType="{x:Type TabItem}">
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="{x:Type TabItem}">
<Grid>
<Border Name="Border" Margin="0,0,-4,0" BorderThickness="1,1,1,1" CornerRadius="2,12,0,0" >
<ContentPresenter x:Name="ContentSite" VerticalAlignment="Center" HorizontalAlignment="Center" ContentSource="Header" Margin="12,2,12,2" RecognizesAccessKey="True"/>
</Border>
</Grid>
<ControlTemplate.Triggers>
<Trigger Property="IsSelected" Value="True">
<Setter Property="Panel.ZIndex" Value="100" />
<Setter TargetName="Border" Property="Background" Value="{Binding SelectedBgClr}" />
<Setter Property="Foreground" Value="Yellow" />
<Setter TargetName="Border" Property="BorderThickness" Value="1,1,1,0" />
</Trigger>
<Trigger Property="IsSelected" Value="False">
<Setter TargetName="Border" Property="Background" Value="Green" />
<Setter Property="Foreground" Value="AliceBlue"/>
</Trigger>
<Trigger Property="IsMouseOver" Value="True">
<Setter TargetName="Border" Property="Background" Value="Orange" />
<Setter Property="Foreground" Value="Black"/>
</Trigger>
</ControlTemplate.Triggers>
</ControlTemplate>
</Setter.Value>
</Setter>
</Style>
</TabItem.Style>
</TabItem>

后面的代码是:

 public Tab()
{
SelectedBgClr = new SolidColorBrush(Colors.Red);
//UnSelectedBgClr = new SolidColorBrush(Colors.Green);
//HoverBgClr = new SolidColorBrush(Colors.Orange);
InitializeComponent();

}
public static readonly DependencyProperty SelectedBgClrProperty = DependencyProperty.Register("SelectedBgClr", typeof(Brush), typeof(Tab), new UIPropertyMetadata(null));
public Brush SelectedBgClr
{
get
{
return (Brush)GetValue(SelectedBgClrProperty);
}
set
{
SetValue(SelectedBgClrProperty, value);
}
}

最佳答案

您发现很难得到问题答案的原因是您的处理方式完全错误;我能想到极少数情况下,按照您的建议更改代码中的控件是合理的。 WPF 专门设计用于将视觉状态与代码分离,忽略它后果自负!

要真正回答您的问题,尽管以下内容可以解决问题……有点……

foreach (TabItem item in tabControl.Items)
item.Background = new SolidColorBrush(Colors.Blue);

如果您执行此操作,您会注意到它会更改未选定标签的背景颜色,但不会更改当前选定标签的背景颜色。您还会注意到,用鼠标突出显示选项卡会再次显示另一种颜色。事实上,TabItem 有 7 种不同的视觉状态,添加代码来涵盖每种情况开始变得困惑,而且肯定比使用 XAML 复杂得多。

通过代码控制背景颜色的“正确”方法是使用 XAML 和数据绑定(bind)。首先去Microsoft MSDN page for WPF TabControl Styles and Templates您可以在其中找到 TabItem 的完整模板。将其粘贴到您的 Window.Resources 部分,现在您可以开始尝试它的外观(不要忘记添加命名空间和资源)。如果您使用各种资源,您会注意到 TabItems 使用线性渐变,ControlLightColor 用于所有选项卡的顶部,ControlMediumColor 用于未选定选项卡的底部,ControlDarkColor 用于当前选定选项卡的底部.要在运行时控制它,您需要找到散布在样式中的这些资源的所有实例并将它们绑定(bind)到代码中的属性,然后编写一个 ValueConverter 将您的属性(我猜是 bool 值)转换为刷子。另一种(更好的)方法,一种根本不需要编写任何额外代码的方法,是使用 DataTrigger 来更改 TabItem 的视觉外观以响应您的属性更改值,但这有点过了“初学者”阶段,您需要提供有关您的具体案例的更多信息。

更新:这似乎对我有用:

void TabSet_SelectionChanged(object sender, System.Windows.Controls.SelectionChangedEventArgs e)
{
foreach (TabItem item in tabControl.Items)
item.Background = new SolidColorBrush(item.IsSelected ? Colors.Green : Colors.Red);
}

不过我仍然认为这是非常错误的。如果您绝对坚持在代码中执行此操作,那么您不应该使用 WPF。这完全是错误的技术,我怎么强调都不为过!

更新 #2:您快完成了,您只需要在承载选项卡控件的窗口中执行此操作:

<Window x:Class="MyWpfApplication.Window1"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="Window1" Height="300" Width="300" WindowState="Maximized">

<Window.Resources>

<Style TargetType="{x:Type TabItem}">
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="{x:Type TabItem}">
<Grid>
<Border Name="Border" Margin="0,0,-4,0" BorderThickness="1,1,1,1" CornerRadius="2,12,0,0" >
<ContentPresenter x:Name="ContentSite" VerticalAlignment="Center" HorizontalAlignment="Center" ContentSource="Header" Margin="12,2,12,2" RecognizesAccessKey="True"/>
</Border>
</Grid>
<ControlTemplate.Triggers>

<Trigger Property="IsSelected" Value="True">
<Setter Property="Panel.ZIndex" Value="100" />
<Setter TargetName="Border" Property="Background" Value="Red" />
<Setter TargetName="Border" Property="BorderThickness" Value="1,1,1,0" />
</Trigger>

<Trigger Property="IsSelected" Value="False">
<Setter TargetName="Border" Property="Background" Value="Green" />
</Trigger>
<Trigger Property="IsMouseOver" Value="True">
<Setter TargetName="Border" Property="Background" Value="Orange" />
</Trigger>

</ControlTemplate.Triggers>
</ControlTemplate>
</Setter.Value>
</Setter>
</Style>

</Window.Resources>

<TabControl>
<TabItem Header="Foo" />
<TabItem Header="Bar" />
<TabItem Header="Baz" />
</TabControl>

</Window>

关于c# - WPF TabControl,用C#代码改变TabItem的背景颜色,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20555505/

31 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com