将颜色添加到syncfusion ColorpickerPalette 控件

发布于 2024-12-22 11:56:57 字数 425 浏览 1 评论 0原文

我将颜色添加到syncfusion ColorPickerPalette 控件中的标准颜色列表中。 我写代码:

 ColorPickerPalette  Palette=new ColorPickerPalette();
    Palette.stdColorCollection=new ObservableCollection<ColorGroupItem>();
    ColorGroupItem ColorItem=new ColorGroupItem();
    ColorItem.HeaderName="No Color";
    ColorItem.Color=Brushes.Transparent;
    Palette.stdColorCollection.Add(ColorItem);

但是这个颜色没有显示在调色板中。

i will add color to standard color list in syncfusion ColorPickerPalette control.
i write code:

 ColorPickerPalette  Palette=new ColorPickerPalette();
    Palette.stdColorCollection=new ObservableCollection<ColorGroupItem>();
    ColorGroupItem ColorItem=new ColorGroupItem();
    ColorItem.HeaderName="No Color";
    ColorItem.Color=Brushes.Transparent;
    Palette.stdColorCollection.Add(ColorItem);

But this color dont show in Palette.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

沉默的熊 2024-12-29 11:56:57

尝试是否应用主题:

Palette.Themes = PaletteTheme.Apex;

如果不起作用,请检查是否已将调色板正确添加到父控件:

LayoutRoot.Children.Add(colorpicker);

让我知道它是否有效。不然我们就会想别的事情。 :)

干杯!

Try if a theme is getting applied:

Palette.Themes = PaletteTheme.Apex;

if it doesnt work, check if you have properly added the palette to the parent control:

LayoutRoot.Children.Add(colorpicker);

Let me know if it works. Otherwise we'll think of other things. :)

CHEERS !!!

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文