1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- <ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
- xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
- <SolidColorBrush x:Key="transl" Color="#01FFFFFF"/>
-
- <!--升压站菜单-->
- <ControlTemplate x:Key="btmenu">
- <ControlTemplate.Triggers>
- <Trigger Property="IsMouseOver" Value="True">
- <Setter TargetName="p1" Property="Path.Fill" Value="#FFA4A4A4"/>
- </Trigger>
- <Trigger Property="IsMouseOver" Value="False">
- <Setter TargetName="p1" Property="Path.Fill" Value="WhiteSmoke"/>
- </Trigger>
- </ControlTemplate.Triggers>
- <Viewbox>
- <Canvas Width="1024" Height="1024" Background="{StaticResource transl}">
- <Path x:Name="p1" Data="M1.114 511.774c0-56.444 45.767-102.177 102.177-102.177 56.444 0 102.175 45.733 102.175 102.176 0 56.444-45.731 102.178-102.175 102.178C46.881 613.951 1.114 568.218 1.114 511.774zM409.822 511.774c0-56.444 45.767-102.177 102.178-102.176 56.443 0 102.177 45.733 102.177 102.175 0 56.444-45.733 102.178-102.177 102.178C455.589 613.951 409.822 568.218 409.822 511.774zM818.532 511.774c0-56.444 45.767-102.176 102.177-102.176 56.443 0 102.177 45.733 102.177 102.175 0 56.444-45.733 102.178-102.177 102.178C864.299 613.951 818.532 568.218 818.532 511.774z"/>
- </Canvas>
- </Viewbox>
- </ControlTemplate>
-
- <!--添加-->
- <ControlTemplate x:Key="add">
- <Viewbox>
- <Canvas Width="1024" Height="1024" Background="{StaticResource transl}">
- <Path Fill="#1296db" Data="M514.048 62.464q93.184 0 175.616 35.328t143.872 96.768 96.768 143.872 35.328 175.616q0 94.208-35.328 176.128t-96.768 143.36-143.872 96.768-175.616 35.328q-94.208 0-176.64-35.328t-143.872-96.768-96.768-143.36-35.328-176.128q0-93.184 35.328-175.616t96.768-143.872 143.872-96.768 176.64-35.328zM772.096 576.512q26.624 0 45.056-18.944t18.432-45.568-18.432-45.056-45.056-18.432l-192.512 0 0-192.512q0-26.624-18.944-45.568t-45.568-18.944-45.056 18.944-18.432 45.568l0 192.512-192.512 0q-26.624 0-45.056 18.432t-18.432 45.056 18.432 45.568 45.056 18.944l192.512 0 0 191.488q0 26.624 18.432 45.568t45.056 18.944 45.568-18.944 18.944-45.568l0-191.488 192.512 0z"/>
- </Canvas>
- </Viewbox>
- </ControlTemplate>
- <!--编辑-->
- <ControlTemplate x:Key="edit">
- <Viewbox>
- <Canvas Width="1024" Height="1024" Background="{StaticResource transl}">
- <Path Fill="#1296db" Data="M115.032325 70.15541h729.410569c61.719356 0 112.217011 50.497655 112.217011 112.21701v729.410569c0 61.719356-50.497655 112.217011-112.217011 112.217011H115.032325c-61.719356 0-112.217011-50.497655-112.217011-112.217011V182.37242c0-61.719356 50.497655-112.217011 112.217011-112.21701z"/>
- <Path Fill="#AFFCFE" Data="M486.751173 533.050579l51.900367-130.452275 78.551907 79.95462-130.452274 50.497655z m519.003674-519.003674c21.040689 22.443402 18.235264 60.316643-7.013564 85.56547L617.203447 482.552924l-79.95462-79.95462L920.189376 21.060468c25.248827-25.248827 63.122068-28.054253 85.565471-7.013563z"/>
- </Canvas>
- </Viewbox>
- </ControlTemplate>
-
-
- <!--删除-->
- <ControlTemplate x:Key="remove">
- <Viewbox>
- <Canvas Width="1024" Height="1024" Background="{StaticResource transl}">
- <Path Fill="#d81e06" Data="M827.392 195.584q65.536 65.536 97.792 147.456t32.256 167.936-32.256 167.936-97.792 147.456-147.456 98.304-167.936 32.768-168.448-32.768-147.968-98.304-98.304-147.456-32.768-167.936 32.768-167.936 98.304-147.456 147.968-97.792 168.448-32.256 167.936 32.256 147.456 97.792zM720.896 715.776q21.504-21.504 18.944-49.152t-24.064-49.152l-107.52-107.52 107.52-107.52q21.504-21.504 24.064-49.152t-18.944-49.152-51.712-21.504-51.712 21.504l-107.52 106.496-104.448-104.448q-21.504-20.48-49.152-23.04t-49.152 17.92q-21.504 21.504-21.504 52.224t21.504 52.224l104.448 104.448-104.448 104.448q-21.504 21.504-21.504 51.712t21.504 51.712 49.152 18.944 49.152-24.064l104.448-104.448 107.52 107.52q21.504 21.504 51.712 21.504t51.712-21.504"/>
- </Canvas>
- </Viewbox>
- </ControlTemplate>
- </ResourceDictionary>
|