Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我研究了 WPControl,并使用了这个包中的日历。我研究了链接。我可以为日历中的特定日期赋予背景颜色。但我无法为此设置背景图像。
顺便说一句,我正在使用这个日历来显示特定日期的一些消息详细信息。
提前谢谢。
你可以使用
ImageBrush brush = new ImageBrush(); brush.ImageSource = new BitmapImage(new Uri("/APPNAME;component/Images/IMAGENAME)); Object.Background = brush;
只需将APPNAMEand替换IMAGENAME为受人尊敬的字段即可。
APPNAME
IMAGENAME
注意:将APPNAME代码部分下的所有空格替换为 %20。