WPF Path使用Geometry数据

2021-03-31 02:28

阅读:718

标签:sources   ati   使用   数据   geo   arp   col   resource   The   

在某些情况下控件需要Path作为图标,此时资源字典中存入的是Geometry数据

Path pathClose = new Path();
pathClose.Data = (Geometry)new ResourceDictionary { Source = new Uri(@"Resources/Themes/Geometries.xaml", UriKind.Relative) }["t_left"];
pathClose.Fill = ResourceHelper.GetResource("PrimaryTextBrush");
pathClose.Width = 16;
pathClose.Height = 16;
pathClose.Stretch = Stretch.Uniform;

给定宽、高,设置Fill颜色
重要的事情说三遍
其中一定要设置pathClose.Stretch = Stretch.Uniform
其中一定要设置pathClose.Stretch = Stretch.Uniform
其中一定要设置pathClose.Stretch = Stretch.Uniform
这样就可以使Path使用Geometry数据了

WPF Path使用Geometry数据

标签:sources   ati   使用   数据   geo   arp   col   resource   The   

原文地址:https://www.cnblogs.com/Stay627/p/14586530.html


评论


亲,登录后才可以留言!