WPF Path使用Geometry数据
2021-03-31 02:28
标签:sources ati 使用 数据 geo arp col resource The 在某些情况下控件需要Path作为图标,此时资源字典中存入的是Geometry数据 给定宽、高,设置Fill颜色 WPF Path使用Geometry数据 标签:sources ati 使用 数据 geo arp col resource The 原文地址:https://www.cnblogs.com/Stay627/p/14586530.htmlPath pathClose = new Path();
pathClose.Data = (Geometry)new ResourceDictionary { Source = new Uri(@"Resources/Themes/Geometries.xaml", UriKind.Relative) }["t_left"];
pathClose.Fill = ResourceHelper.GetResource
重要的事情说三遍
其中一定要设置pathClose.Stretch = Stretch.Uniform
其中一定要设置pathClose.Stretch = Stretch.Uniform
其中一定要设置pathClose.Stretch = Stretch.Uniform
这样就可以使Path使用Geometry数据了
文章标题:WPF Path使用Geometry数据
文章链接:http://soscw.com/index.php/essay/70267.html