将颜色添加到syncfusion ColorpickerPalette 控件
我将颜色添加到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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试是否应用主题:
如果不起作用,请检查是否已将调色板正确添加到父控件:
让我知道它是否有效。不然我们就会想别的事情。 :)
干杯!
Try if a theme is getting applied:
if it doesnt work, check if you have properly added the palette to the parent control:
Let me know if it works. Otherwise we'll think of other things. :)
CHEERS !!!