gpt4 book ai didi

c# - 在 C# 中设置 WPF 资源

转载 作者:行者123 更新时间:2023-11-30 12:37:21 26 4
gpt4 key购买 nike

我如何通过 C# 执行以下操作(因为我以编程方式生成 ListView):

<ListView>
<ListView.Resources>
<SolidColorBrush x:Key="{x:Static SystemColors.HighlightBrushKey}" Color="Transparent"/>
<SolidColorBrush x:Key="{x:Static SystemColors.ControlBrushKey}" Color="Transparent"/>
</ListView.Resources>
...

最佳答案

我还在学习 WPF,但你可以试试这个:

    ListView view = new ListView();
view.Resources.Add(SystemColors.HighlightBrushKey, new SolidColorBrush(Colors.Transparent));
view.Resources.Add(SystemColors.ControlBrushKey, new SolidColorBrush(Colors.Transparent));

关于c# - 在 C# 中设置 WPF 资源,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1266431/

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