基本信息
源码名称:wpf图像路径-绘制齿轮.
源码大小:0.09M
文件格式:.zip
开发语言:C#
更新时间:2018-11-22
   友情提示:(无需注册或充值,赞助后即可获取资源下载链接)

     嘿,亲!知识可是无价之宝呢,但咱这精心整理的资料也耗费了不少心血呀。小小地破费一下,绝对物超所值哦!如有下载和支付问题,请联系我们QQ(微信同号):813200300

本次赞助数额为: 2 元 
   源码介绍


<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
                    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
                    x:Name="SettingsPathStyleDictionary">
    <LinearGradientBrush x:Key="GradientBrush" EndPoint="0.9,0" StartPoint="0.1,0.9">
        <GradientStop Color="Gray" Offset="0" />
        <GradientStop Color="White" Offset="0.5" />
        <GradientStop Color="#FF767676" Offset="1" />
    </LinearGradientBrush>
    <GeometryGroup x:Key="CogweelGeometry">
        <StreamGeometry>M109.801714032956,0.481527332780307A100,100,0,0,0,90.1982859670439,0.481527332780307L78.2286492059153,28.2294748200843 64.6452447380502,33.8559051738734 36.5606715836355,22.6989546637263A100,100,0,0,0,22.6989546637263,36.5606715836355L33.8559051738734,64.6452447380502 28.2294748200843,78.2286492059153 0.481527332780318,90.1982859670439A100,100,0,0,0,0.481527332780307,109.801714032956L28.2294748200843,121.771350794085 33.8559051738734,135.35475526195 22.6989546637263,163.439328416365A100,100,0,0,0,36.5606715836354,177.301045336274L64.6452447380502,166.144094826127 78.2286492059153,171.770525179916 90.1982859670439,199.51847266722A100,100,0,0,0,109.801714032956,199.51847266722L121.771350794085,171.770525179916 135.35475526195,166.144094826127 163.439328416365,177.301045336274A100,100,0,0,0,177.301045336274,163.439328416365L166.144094826127,135.35475526195 171.770525179916,121.771350794085 199.51847266722,109.801714032956A100,100,0,0,0,199.51847266722,90.1982859670439L171.770525179916,78.2286492059153 166.144094826127,64.6452447380502 177.301045336274,36.5606715836354A100,100,0,0,0,163.439328416365,22.6989546637263L135.35475526195,33.8559051738734 121.771350794085,28.2294748200843z</StreamGeometry>
        <EllipseGeometry RadiusX="40" RadiusY="40" Center="100,100"/>
    </GeometryGroup>
    <ScaleTransform x:Key="Scale007" ScaleX="0.07" ScaleY="0.07"/>
    <Style TargetType="Path" x:Key="CogweelPath">
        <Setter Property="Width" Value="210"/>
        <Setter Property="Height" Value="210"/>
        <Setter Property="StrokeThickness" Value="10"/>
        <Setter Property="Stroke" Value="#FF6C6C6C"/>
        <Setter Property="Fill" Value="{StaticResource GradientBrush}"/>
        <Setter Property="RenderTransformOrigin" Value="0.5,0.5"/>
        <Setter Property="Data" Value="{StaticResource CogweelGeometry}"/>
        <Setter Property="LayoutTransform" Value="{StaticResource Scale007}"/>
    </Style>    
</ResourceDictionary>