C# wpf简单颜色板的实现
程序员文章站
2022-06-15 19:07:33
目录前言一、如何实现?1、使用objectdataprovider2、定义转换器3、绑定容器二、使用示例1.代码2.显示效果前言wpf本身没有提供颜色板之类的控件,有些业务使用场景需要使用颜色板之类的...
前言
wpf本身没有提供颜色板之类的控件,有些业务使用场景需要使用颜色板之类的控件,比如设置弹幕的颜色或设置文本的颜色等。这里提供一种颜色板的简单实现方法。
一、如何实现?
1、使用objectdataprovider
objectdataprovider是wpf中xaml绑定.net任意t类型的媒介,通过objectdataprovider可以直接获取到system.windows.media.brushes类的属性列表。system.windows.media.brushes中定义了常见的颜色刷子。
2、定义转换器
由于objectdataprovider获取的brushes属性集合是反射集合,并不是直接的brush对象,所以需要进行数据的转换,定义一个转换器,将属性(propertyinfo)转换成brush对象。
3、绑定容器
绑定容器的itemssource属性并使用上述的转换器,通过定义itemtemplate自定义颜色的显示控件。
二、使用示例
本示例使用的是combobox作为容器显示颜色板。
1.代码
xaml代码如下(示例):
<window x:class="wpfapp1.mainwindow" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:d="http://schemas.microsoft.com/expression/blend/2008" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:sys="clr-namespace:system;assembly=mscorlib" xmlns:local="clr-namespace:wpfapp1" mc:ignorable="d" title="mainwindow" height="720" width="1280"> <window.resources> <resourcedictionary> <objectdataprovider objectinstance="{x:type brushes}" methodname="getproperties" x:key="brushes" /> <local:brushtypeconverter x:key="brushtypeconverter"></local:brushtypeconverter> </resourcedictionary> </window.resources> <grid> <combobox margin="0,-200,0,0" width="240" height="60" itemssource="{binding source={staticresource brushes}}" selecteditem="{binding forecolor}"> <combobox.itemcontainerstyle> <style targettype="comboboxitem"> <setter property="template" > <setter.value> <controltemplate targettype="comboboxitem"> <rectangle width="210" height="46" margin="2,2,2,2" stroke="#cccccc" strokethickness="1" radiusx="5" radiusy="5" fill="{binding relativesource={x:static relativesource.self},path=datacontext,converter={staticresource brushtypeconverter}}"></rectangle> </controltemplate> </setter.value> </setter> </style> </combobox.itemcontainerstyle> <combobox.template> <controltemplate targettype="combobox"> <grid> <togglebutton cursor="hand" borderthickness="0" borderbrush="transparent" panel.zindex="1" ischecked="{binding path=isdropdownopen, mode=twoway, relativesource={relativesource templatedparent}}" clickmode="press"> <togglebutton.template> <controltemplate> <stackpanel orientation="horizontal" background="transparent"> <rectangle width="210" height="46" margin="7,0,5,0" stroke="#cccccc" strokethickness="1" radiusx="5" radiusy="5" fill="{binding selecteditem, relativesource={relativesource findancestor, ancestortype={x:type combobox}},converter={staticresource brushtypeconverter}}"></rectangle> <polyline grid.column="1" points="0,0 5,6 10,0" margin="0,0,10,0" width="10" height="6" stretch="fill" stroke="black" strokethickness="1" /> </stackpanel> </controltemplate> </togglebutton.template> </togglebutton> <popup isopen="{templatebinding isdropdownopen}" placement="bottom" x:name="popup" focusable="false" allowstransparency="true" popupanimation="slide"> <border cornerradius="1" maxheight="{templatebinding maxdropdownheight}" minwidth="{templatebinding actualwidth}" x:name="dropdown" snapstodevicepixels="true"> <scrollviewer margin="4,6,4,6" maxheight="{templatebinding maxdropdownheight}" snapstodevicepixels="true" horizontalscrollbarvisibility="auto" verticalscrollbarvisibility="auto" cancontentscroll="true"> <!--stackpanel 用于显示子级,方法是将 isitemshost 设置为 true--> <stackpanel isitemshost="true" keyboardnavigation.directionalnavigation="contained" background="white"/> </scrollviewer> </border> </popup> </grid> </controltemplate> </combobox.template> </combobox> </grid> </window>
转换器代码如下(示例):
public class brushtypeconverter : ivalueconverter { public object convert(object value, type targettype, object parameter, system.globalization.cultureinfo culture) { if (value == null) return null; propertyinfo propertyinfo = value as propertyinfo; return propertyinfo.getvalue(value) as solidcolorbrush; } public object convertback(object value, type targettype, object parameter, system.globalization.cultureinfo culture) { return null; } }
2.显示效果
效果如下(示例):
到此这篇关于c# wpf简单颜色板的实现的文章就介绍到这了,更多相关c# wpf 颜色板内容请搜索以前的文章或继续浏览下面的相关文章希望大家以后多多支持!
上一篇: php 5.5不能运行,求助