2016/11/23

同梱スキン - Keyboard.xaml


自分(T.N)用に作ったもの



  1. <!-- zeKey skinfile https://ze-key.blogspot.jp/ -->
  2. <z:Keyboard xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4. xmlns:z="clr-namespace:zeKey.Skin;assembly=zeKey"
  5. x:Name="KB"
  6. Width="600"
  7. Height="300"
  8. z:DragMoveBehavior.CanMove="True">
  9. <z:Keyboard.SkinInfo>
  10. <z:SkinInfo Title="TN仕様キーボード"
  11. Author="T.Naga"
  12. License="改変自由"
  13. Version="1.0.0">
  14. <z:SkinInfo.Information>
  15. <TextBlock TextWrapping="Wrap">
  16. クリックで各キー打鍵
  17. <LineBreak />
  18. 右クリックは[Shift]+各キー打鍵
  19. <LineBreak />
  20. 修飾キー([Shift][Ctrl][Alt][Win])はクリックで押し込み 通常キー打鍵で押し込み解除
  21. <LineBreak />
  22. 修飾キー右クリックはもう一度押すまで押し込み維持
  23. <LineBreak />
  24. スキン上ホイール回転で↑↓キー
  25. <LineBreak />
  26. <LineBreak />
  27. 注意:
  28. <LineBreak />
  29. ・デフォルトで隠れる設定をTN仕様で設定済
  30. <LineBreak />
  31. ・[Esc][IME][Caps][無変換][変換][App][PS]キーは リピート無し設定
  32. <LineBreak />
  33. ・[PS]キー右クリックは[Alt]+[PS]
  34. <LineBreak />
  35. <LineBreak />
  36. 詳しい説明は
  37. <z:Hyperlink NavigateUri="https://ze-key.blogspot.jp/">ブログ</z:Hyperlink>
  38. を参照してください
  39. </TextBlock>
  40. </z:SkinInfo.Information>
  41. </z:SkinInfo>
  42. </z:Keyboard.SkinInfo>
  43. <z:Keyboard.AutoHide>
  44. <z:AutoHide HideType="SlideTop"
  45. IsEnabled="True"
  46. OffsetY="1">
  47. <z:AutoHide.HideAnimation>
  48. <z:AutoHideAnimation Delay="1"
  49. Duration="0:0:0.2"
  50. Mode="Freaze" />
  51. </z:AutoHide.HideAnimation>
  52. <z:AutoHide.ShowAnimation>
  53. <z:AutoHideAnimation Delay="0.2"
  54. Duration="0:0:0.2"
  55. Mode="Delay" />
  56. </z:AutoHide.ShowAnimation>
  57. </z:AutoHide>
  58. </z:Keyboard.AutoHide>
  59. <z:Keyboard.Resources>
  60. <SolidColorBrush x:Key="キー トグルオン" Color="Red" />
  61. <SolidColorBrush x:Key="キー 押し込み" Color="Red" />
  62. <SolidColorBrush x:Key="キー 背景" Color="White" />
  63. <SolidColorBrush x:Key="キー 枠" Color="Black" />
  64. <SolidColorBrush x:Key="キーボード 背景" Color="#3FFF" />
  65. <SolidColorBrush x:Key="キーボード 枠" Color="Black" />
  66. <SolidColorBrush x:Key="キーボード 枠IMEオン" Color="Red" />
  67. <SolidColorBrush x:Key="文字" Color="Black" />
  68. <Style TargetType="{x:Type ButtonBase}">
  69. <Setter Property="Foreground" Value="{DynamicResource 文字}" />
  70. <Setter Property="Background" Value="{DynamicResource キー 背景}" />
  71. <Setter Property="BorderBrush" Value="{DynamicResource キー 枠}" />
  72. <Style.Triggers>
  73. <Trigger Property="IsPressed" Value="True">
  74. <Setter Property="Background" Value="{DynamicResource キー 押し込み}" />
  75. </Trigger>
  76. <Trigger Property="ToggleButton.IsChecked" Value="True">
  77. <Setter Property="Background" Value="{DynamicResource キー トグルオン}" />
  78. </Trigger>
  79. </Style.Triggers>
  80. </Style>
  81. <Style BasedOn="{StaticResource {x:Type ButtonBase}}" TargetType="{x:Type z:LRButton}" />
  82. <Style BasedOn="{StaticResource {x:Type ButtonBase}}" TargetType="{x:Type z:LRRepeatButton}" />
  83. <Style BasedOn="{StaticResource {x:Type ButtonBase}}" TargetType="{x:Type z:LRToggleButton}" />
  84. <Style x:Key="EnterKey"
  85. BasedOn="{StaticResource {x:Type z:LRRepeatButton}}"
  86. TargetType="{x:Type z:LRRepeatButton}">
  87. <Setter Property="Template">
  88. <Setter.Value>
  89. <ControlTemplate TargetType="{x:Type z:LRRepeatButton}">
  90. <Grid x:Name="Target" RenderTransformOrigin="0.5,0.5">
  91. <Grid.RenderTransform>
  92. <ScaleTransform x:Name="ScaleTransform" />
  93. </Grid.RenderTransform>
  94. <Path HorizontalAlignment="Left"
  95. VerticalAlignment="Top"
  96. Data="M6,1 L14,1 30,1 96,1 C98.76,1 101,3.24 101,6 L101,80 C101,82.76 98.76,85 96,85 L14,85 C11.24,85 9,82.76 9,80 L9,41 6,41 C3.24,41 1,38.76 1,36 L1,6 C1,3.24 3.24,1 6,1 z"
  97. Fill="{Binding Background,
  98. RelativeSource={RelativeSource TemplatedParent}}"
  99. Stretch="Fill"
  100. Stroke="{Binding BorderBrush,
  101. RelativeSource={RelativeSource TemplatedParent}}"
  102. StrokeThickness="2" />
  103. <Viewbox Margin="16,4,10,4">
  104. <ContentPresenter />
  105. </Viewbox>
  106. </Grid>
  107. <ControlTemplate.Triggers>
  108. <EventTrigger RoutedEvent="MouseEnter">
  109. <BeginStoryboard>
  110. <Storyboard>
  111. <DoubleAnimation Duration="0:0:0.1"
  112. Storyboard.TargetName="Target"
  113. Storyboard.TargetProperty="RenderTransform.(ScaleTransform.ScaleX)"
  114. To="1.2" />
  115. <DoubleAnimation Duration="0:0:0.1"
  116. Storyboard.TargetName="Target"
  117. Storyboard.TargetProperty="RenderTransform.(ScaleTransform.ScaleY)"
  118. To="1.2" />
  119. </Storyboard>
  120. </BeginStoryboard>
  121. </EventTrigger>
  122. <EventTrigger RoutedEvent="MouseLeave">
  123. <BeginStoryboard>
  124. <Storyboard>
  125. <DoubleAnimation Duration="0:0:0.1"
  126. Storyboard.TargetName="Target"
  127. Storyboard.TargetProperty="RenderTransform.(ScaleTransform.ScaleX)"
  128. To="1" />
  129. <DoubleAnimation Duration="0:0:0.1"
  130. Storyboard.TargetName="Target"
  131. Storyboard.TargetProperty="RenderTransform.(ScaleTransform.ScaleY)"
  132. To="1" />
  133. </Storyboard>
  134. </BeginStoryboard>
  135. </EventTrigger>
  136. <Trigger Property="IsMouseOver" Value="True">
  137. <Setter Property="Panel.ZIndex" Value="1" />
  138. </Trigger>
  139. </ControlTemplate.Triggers>
  140. </ControlTemplate>
  141. </Setter.Value>
  142. </Setter>
  143. </Style>
  144. </z:Keyboard.Resources>
  145. <z:Keyboard.InputBindings>
  146. <MouseBinding Command="{Binding LRButtonCommand}"
  147. CommandParameter="{Binding ElementName=Up}"
  148. Gesture="{z:WheelUp}" />
  149. <MouseBinding Command="{Binding LRButtonCommand}"
  150. CommandParameter="{Binding ElementName=Down}"
  151. Gesture="{z:WheelDown}" />
  152. </z:Keyboard.InputBindings>
  153. <Grid>
  154. <Border Background="{DynamicResource キーボード 背景}"
  155. BorderThickness="3"
  156. CornerRadius="20">
  157. <Border.Style>
  158. <Style TargetType="{x:Type Border}">
  159. <Setter Property="BorderBrush" Value="{DynamicResource キーボード 枠}" />
  160. <Style.Triggers>
  161. <DataTrigger Binding="{Binding ModeKeys.ImeLock}" Value="true">
  162. <Setter Property="BorderBrush" Value="{DynamicResource キーボード 枠IMEオン}" />
  163. </DataTrigger>
  164. </Style.Triggers>
  165. </Style>
  166. </Border.Style>
  167. </Border>
  168. <Grid>
  169. <Grid.Style>
  170. <Style TargetType="{x:Type Grid}">
  171. <Setter Property="Visibility" Value="Visible" />
  172. <Style.Triggers>
  173. <DataTrigger Binding="{Binding AutoHide.State, ElementName=KB}" Value="{x:Static z:AnimeState.Hidden}">
  174. <Setter Property="Visibility" Value="Hidden" />
  175. </DataTrigger>
  176. </Style.Triggers>
  177. </Style>
  178. </Grid.Style>
  179. <Grid Margin="20,40,20,20">
  180. <Grid.RowDefinitions>
  181. <RowDefinition />
  182. <RowDefinition />
  183. <RowDefinition />
  184. <RowDefinition />
  185. <RowDefinition />
  186. <RowDefinition />
  187. </Grid.RowDefinitions>
  188. <Grid Margin="0,0,0,5">
  189. <Grid.ColumnDefinitions>
  190. <ColumnDefinition />
  191. <ColumnDefinition />
  192. <ColumnDefinition />
  193. <ColumnDefinition />
  194. <ColumnDefinition />
  195. <ColumnDefinition />
  196. <ColumnDefinition />
  197. <ColumnDefinition />
  198. <ColumnDefinition />
  199. <ColumnDefinition />
  200. <ColumnDefinition />
  201. <ColumnDefinition />
  202. <ColumnDefinition />
  203. <ColumnDefinition />
  204. <ColumnDefinition />
  205. <ColumnDefinition />
  206. </Grid.ColumnDefinitions>
  207. <z:LRButton Content="Esc" TypeKey="Esc" />
  208. <z:LRRepeatButton Grid.Column="1"
  209. Content="F1"
  210. TypeKey="F1" />
  211. <z:LRRepeatButton Grid.Column="2"
  212. Content="F2"
  213. TypeKey="F2" />
  214. <z:LRRepeatButton Grid.Column="3"
  215. Content="F3"
  216. TypeKey="F3" />
  217. <z:LRRepeatButton Grid.Column="4"
  218. Content="F4"
  219. TypeKey="F4" />
  220. <z:LRRepeatButton Grid.Column="5"
  221. Content="F5"
  222. TypeKey="F5" />
  223. <z:LRRepeatButton Grid.Column="6"
  224. Content="F6"
  225. TypeKey="F6" />
  226. <z:LRRepeatButton Grid.Column="7"
  227. Content="F7"
  228. TypeKey="F7" />
  229. <z:LRRepeatButton Grid.Column="8"
  230. Content="F8"
  231. TypeKey="F8" />
  232. <z:LRRepeatButton Grid.Column="9"
  233. Content="F9"
  234. TypeKey="F9" />
  235. <z:LRRepeatButton Grid.Column="10"
  236. Content="F10"
  237. TypeKey="F10" />
  238. <z:LRRepeatButton Grid.Column="11"
  239. Content="F11"
  240. TypeKey="F11" />
  241. <z:LRRepeatButton Grid.Column="12"
  242. Content="F12"
  243. TypeKey="F12" />
  244. <z:LRButton Grid.Column="13"
  245. Content="PS"
  246. TypeKey="Snapshot">
  247. <z:LRButton.RightTypeKeys>
  248. <z:TypeKeys TypeKey="LeftAlt">
  249. <z:TypeKeys TypeKey="Snapshot" />
  250. </z:TypeKeys>
  251. </z:LRButton.RightTypeKeys>
  252. </z:LRButton>
  253. <z:LRRepeatButton Grid.Column="14"
  254. Grid.ColumnSpan="2"
  255. Margin="0,0,0,-5"
  256. Content="DEL"
  257. TypeKey="Delete" />
  258. </Grid>
  259. <Grid Grid.Row="1">
  260. <Grid.ColumnDefinitions>
  261. <ColumnDefinition />
  262. <ColumnDefinition />
  263. <ColumnDefinition />
  264. <ColumnDefinition />
  265. <ColumnDefinition />
  266. <ColumnDefinition />
  267. <ColumnDefinition />
  268. <ColumnDefinition />
  269. <ColumnDefinition />
  270. <ColumnDefinition />
  271. <ColumnDefinition />
  272. <ColumnDefinition />
  273. <ColumnDefinition />
  274. <ColumnDefinition />
  275. <ColumnDefinition />
  276. <ColumnDefinition />
  277. </Grid.ColumnDefinitions>
  278. <z:LRButton Content="IME" TypeKey="KanjiMode">
  279. <z:LRButton.Style>
  280. <Style BasedOn="{StaticResource {x:Type z:LRButton}}" TargetType="{x:Type z:LRButton}">
  281. <Style.Triggers>
  282. <DataTrigger Binding="{Binding ModeKeys.ImeLock}" Value="true">
  283. <Setter Property="Background" Value="{DynamicResource キーボード 枠IMEオン}" />
  284. </DataTrigger>
  285. </Style.Triggers>
  286. </Style>
  287. </z:LRButton.Style>
  288. </z:LRButton>
  289. <z:LRRepeatButton Grid.Column="1"
  290. Content="1 !"
  291. TypeKey="D1" />
  292. <z:LRRepeatButton Grid.Column="2"
  293. Content="2 &quot;"
  294. TypeKey="D2" />
  295. <z:LRRepeatButton Grid.Column="3"
  296. Content="3 #"
  297. TypeKey="D3" />
  298. <z:LRRepeatButton Grid.Column="4"
  299. Content="4 $"
  300. TypeKey="D4" />
  301. <z:LRRepeatButton Grid.Column="5"
  302. Content="5 %"
  303. TypeKey="D5" />
  304. <z:LRRepeatButton Grid.Column="6"
  305. Content="6 &amp;"
  306. TypeKey="D6" />
  307. <z:LRRepeatButton Grid.Column="7"
  308. Content="7 '"
  309. TypeKey="D7" />
  310. <z:LRRepeatButton Grid.Column="8"
  311. Content="8 ("
  312. TypeKey="D8" />
  313. <z:LRRepeatButton Grid.Column="9"
  314. Content="9 )"
  315. TypeKey="D9" />
  316. <z:LRRepeatButton Grid.Column="10"
  317. Content="0 "
  318. TypeKey="D0" />
  319. <z:LRRepeatButton Grid.Column="11"
  320. Content="- ="
  321. TypeKey="OemMinus" />
  322. <z:LRRepeatButton Grid.Column="12"
  323. Content="^ ~"
  324. TypeKey="OemQuotes" />
  325. <z:LRRepeatButton Grid.Column="13"
  326. Content="\ |"
  327. TypeKey="Oem5" />
  328. <z:LRRepeatButton Grid.Column="14"
  329. Grid.ColumnSpan="2"
  330. Content="BS"
  331. TypeKey="Backspace" />
  332. </Grid>
  333. <Grid Grid.Row="2">
  334. <Grid.ColumnDefinitions>
  335. <ColumnDefinition Width="1.3*" />
  336. <ColumnDefinition />
  337. <ColumnDefinition />
  338. <ColumnDefinition />
  339. <ColumnDefinition />
  340. <ColumnDefinition />
  341. <ColumnDefinition />
  342. <ColumnDefinition />
  343. <ColumnDefinition />
  344. <ColumnDefinition />
  345. <ColumnDefinition />
  346. <ColumnDefinition />
  347. <ColumnDefinition />
  348. <ColumnDefinition Width="2.7*" />
  349. </Grid.ColumnDefinitions>
  350. <z:LRRepeatButton Content="Tab" TypeKey="Tab" />
  351. <z:LRRepeatButton Grid.Column="1"
  352. Content="q"
  353. TypeKey="Q" />
  354. <z:LRRepeatButton Grid.Column="2"
  355. Content="w"
  356. TypeKey="W" />
  357. <z:LRRepeatButton Grid.Column="3"
  358. Content="e"
  359. TypeKey="E" />
  360. <z:LRRepeatButton Grid.Column="4"
  361. Content="r"
  362. TypeKey="R" />
  363. <z:LRRepeatButton Grid.Column="5"
  364. Content="t"
  365. TypeKey="T" />
  366. <z:LRRepeatButton Grid.Column="6"
  367. Content="y"
  368. TypeKey="Y" />
  369. <z:LRRepeatButton Grid.Column="7"
  370. Content="u"
  371. TypeKey="U" />
  372. <z:LRRepeatButton Grid.Column="8"
  373. Content="i"
  374. TypeKey="I" />
  375. <z:LRRepeatButton Grid.Column="9"
  376. Content="o"
  377. TypeKey="O" />
  378. <z:LRRepeatButton Grid.Column="10"
  379. Content="p"
  380. TypeKey="P" />
  381. <z:LRRepeatButton Grid.Column="11"
  382. Content="@ `"
  383. TypeKey="Oem3" />
  384. <z:LRRepeatButton Grid.Column="12"
  385. Content="[ {"
  386. TypeKey="OemOpenBrackets" />
  387. </Grid>
  388. <Grid Grid.Row="3">
  389. <Grid.ColumnDefinitions>
  390. <ColumnDefinition Width="1.5*" />
  391. <ColumnDefinition />
  392. <ColumnDefinition />
  393. <ColumnDefinition />
  394. <ColumnDefinition />
  395. <ColumnDefinition />
  396. <ColumnDefinition />
  397. <ColumnDefinition />
  398. <ColumnDefinition />
  399. <ColumnDefinition />
  400. <ColumnDefinition />
  401. <ColumnDefinition />
  402. <ColumnDefinition />
  403. <ColumnDefinition Width="2.5*" />
  404. </Grid.ColumnDefinitions>
  405. <z:LRButton Content="Caps" TypeKey="CapsLock">
  406. <z:LRButton.Style>
  407. <Style BasedOn="{StaticResource {x:Type z:LRButton}}" TargetType="{x:Type z:LRButton}">
  408. <Style.Triggers>
  409. <DataTrigger Binding="{Binding ModeKeys.CapsLock}" Value="true">
  410. <Setter Property="Background" Value="{DynamicResource キー トグルオン}" />
  411. </DataTrigger>
  412. </Style.Triggers>
  413. </Style>
  414. </z:LRButton.Style>
  415. </z:LRButton>
  416. <z:LRRepeatButton Grid.Column="1"
  417. Content="a"
  418. TypeKey="A" />
  419. <z:LRRepeatButton Grid.Column="2"
  420. Content="s"
  421. TypeKey="S" />
  422. <z:LRRepeatButton Grid.Column="3"
  423. Content="d"
  424. TypeKey="D" />
  425. <z:LRRepeatButton Grid.Column="4"
  426. Content="f"
  427. TypeKey="F" />
  428. <z:LRRepeatButton Grid.Column="5"
  429. Content="g"
  430. TypeKey="G" />
  431. <z:LRRepeatButton Grid.Column="6"
  432. Content="h"
  433. TypeKey="H" />
  434. <z:LRRepeatButton Grid.Column="7"
  435. Content="j"
  436. TypeKey="J" />
  437. <z:LRRepeatButton Grid.Column="8"
  438. Content="k"
  439. TypeKey="K" />
  440. <z:LRRepeatButton Grid.Column="9"
  441. Content="l"
  442. TypeKey="L" />
  443. <z:LRRepeatButton Grid.Column="10"
  444. Content="; +"
  445. TypeKey="OemPlus" />
  446. <z:LRRepeatButton Grid.Column="11"
  447. Content=": *"
  448. TypeKey="Oem1" />
  449. <z:LRRepeatButton Grid.Column="12"
  450. Content="] }"
  451. TypeKey="OemCloseBrackets" />
  452. </Grid>
  453. <Grid Grid.Row="4">
  454. <Grid.ColumnDefinitions>
  455. <ColumnDefinition Width="2*" />
  456. <ColumnDefinition />
  457. <ColumnDefinition />
  458. <ColumnDefinition />
  459. <ColumnDefinition />
  460. <ColumnDefinition />
  461. <ColumnDefinition />
  462. <ColumnDefinition />
  463. <ColumnDefinition />
  464. <ColumnDefinition />
  465. <ColumnDefinition />
  466. <ColumnDefinition />
  467. <ColumnDefinition />
  468. <ColumnDefinition />
  469. <ColumnDefinition />
  470. </Grid.ColumnDefinitions>
  471. <z:LRToggleButton Content="Shift" TypeKey="Shift" />
  472. <z:LRRepeatButton Grid.Column="1"
  473. Content="z"
  474. TypeKey="Z" />
  475. <z:LRRepeatButton Grid.Column="2"
  476. Content="x"
  477. TypeKey="X" />
  478. <z:LRRepeatButton Grid.Column="3"
  479. Content="c"
  480. TypeKey="C" />
  481. <z:LRRepeatButton Grid.Column="4"
  482. Content="v"
  483. TypeKey="V" />
  484. <z:LRRepeatButton Grid.Column="5"
  485. Content="b"
  486. TypeKey="B" />
  487. <z:LRRepeatButton Grid.Column="6"
  488. Content="n"
  489. TypeKey="N" />
  490. <z:LRRepeatButton Grid.Column="7"
  491. Content="m"
  492. TypeKey="M" />
  493. <z:LRRepeatButton Grid.Column="8"
  494. Content=", &lt;"
  495. TypeKey="OemComma" />
  496. <z:LRRepeatButton Grid.Column="9"
  497. Content=". &gt;"
  498. TypeKey="OemPeriod" />
  499. <z:LRRepeatButton Grid.Column="10"
  500. Content="/ ?"
  501. TypeKey="OemQuestion" />
  502. <z:LRRepeatButton Grid.Column="11"
  503. Content="\ _"
  504. FontFamily="Arial"
  505. TypeKey="OemBackslash" />
  506. <z:LRRepeatButton x:Name="Up"
  507. Grid.Column="13"
  508. Content="↑"
  509. TypeKey="Up" />
  510. </Grid>
  511. <Grid Grid.Row="5">
  512. <Grid.ColumnDefinitions>
  513. <ColumnDefinition Width="1.5*" />
  514. <ColumnDefinition />
  515. <ColumnDefinition Width="1.5*" />
  516. <ColumnDefinition Width="1.5*" />
  517. <ColumnDefinition />
  518. <ColumnDefinition />
  519. <ColumnDefinition />
  520. <ColumnDefinition />
  521. <ColumnDefinition />
  522. <ColumnDefinition Width="1.5*" />
  523. <ColumnDefinition />
  524. <ColumnDefinition />
  525. <ColumnDefinition />
  526. <ColumnDefinition />
  527. </Grid.ColumnDefinitions>
  528. <z:LRToggleButton Content="Ctrl" TypeKey="Ctrl" />
  529. <z:LRToggleButton Grid.Column="1"
  530. Content="Win"
  531. TypeKey="Win" />
  532. <z:LRToggleButton Grid.Column="2"
  533. Content="Alt"
  534. TypeKey="Alt" />
  535. <z:LRButton Grid.Column="3"
  536. Content=" 無変換 "
  537. TypeKey="ImeNonConvert" />
  538. <z:LRRepeatButton Grid.Column="4"
  539. Grid.ColumnSpan="5"
  540. Content=""
  541. TypeKey="Space" />
  542. <z:LRButton Grid.Column="9"
  543. Content=" 変換 "
  544. TypeKey="ImeConvert" />
  545. <z:LRButton Grid.Column="10"
  546. Content="App"
  547. TypeKey="Apps" />
  548. <z:LRRepeatButton Grid.Column="11"
  549. Content="←"
  550. TypeKey="Left" />
  551. <z:LRRepeatButton x:Name="Down"
  552. Grid.Column="12"
  553. Content="↓"
  554. TypeKey="Down" />
  555. <z:LRRepeatButton Grid.Column="13"
  556. Content="→"
  557. TypeKey="Right" />
  558. </Grid>
  559. </Grid>
  560. <Grid Margin="20,40,20,20">
  561. <Grid.RowDefinitions>
  562. <RowDefinition />
  563. <RowDefinition />
  564. <RowDefinition />
  565. </Grid.RowDefinitions>
  566. <Grid.ColumnDefinitions>
  567. <ColumnDefinition Width="13.3*" />
  568. <ColumnDefinition Width="2.7*" />
  569. </Grid.ColumnDefinitions>
  570. <z:LRRepeatButton Grid.Row="1"
  571. Grid.Column="1"
  572. Margin="2"
  573. Content=" Enter "
  574. Style="{StaticResource EnterKey}"
  575. TypeKey="Enter" />
  576. </Grid>
  577.  
  578. <TextBlock Margin="10,12,0,0"
  579. HorizontalAlignment="Left"
  580. VerticalAlignment="Top"
  581. FontFamily="Gabriola"
  582. FontSize="24"
  583. Text="zeKey">
  584. <TextBlock.RenderTransform>
  585. <RotateTransform Angle="-25" />
  586. </TextBlock.RenderTransform>
  587. </TextBlock>
  588. <z:ResizeGrip Background="#01FFFFFF" BorderThickness="0,0,3,3">
  589. <z:ResizeGrip.Style>
  590. <Style TargetType="{x:Type z:ResizeGrip}">
  591. <Setter Property="Foreground" Value="{DynamicResource キーボード 枠}" />
  592. <Setter Property="BorderBrush" Value="{DynamicResource キーボード 枠}" />
  593. <Style.Triggers>
  594. <DataTrigger Binding="{Binding ModeKeys.ImeLock}" Value="true">
  595. <Setter Property="BorderBrush" Value="{DynamicResource キーボード 枠IMEオン}" />
  596. <Setter Property="Foreground" Value="{DynamicResource キーボード 枠IMEオン}" />
  597. </DataTrigger>
  598. </Style.Triggers>
  599. </Style>
  600. </z:ResizeGrip.Style>
  601. </z:ResizeGrip>
  602. </Grid>
  603. </Grid>
  604. </z:Keyboard>

0 件のコメント :

コメントを投稿