Visual Studio/WPF > Resources/Style > x:Key를 지정하지 않는 Implicit key 예제
4713 단어 myVisualStudioStudyWPF#migrated
Windows 7 Pro (32bit)
Microsoft Visual Studio 2017 Community
XAML Resources
Styles, DataTemplates, and Implicit Keys
...
implicit key from the standpoint of requesting it is the 유형 of the control itself. The implicit key from the standpoint of defining the resource is the TargetType of the style.
Style에 관해서, x:Key를 지정하지 않고 TargetType으로 정의해 두면 Style을 변경할 수 있다는 것.
MainWindow.xaml
<Window x:Class="_170615_t1450_ImplicitKey.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:local="clr-namespace:_170615_t1450_ImplicitKey"
mc:Ignorable="d"
Title="MainWindow" Height="350" Width="525">
<Window.Resources>
<Style TargetType="Button">
<Setter Property="Background">
<Setter.Value>
<LinearGradientBrush>
<GradientStop Offset="0.0" Color="AliceBlue"/>
<GradientStop Offset="1.0" Color="Salmon"/>
</LinearGradientBrush>
</Setter.Value>
</Setter>
<Setter Property="FontSize" Value="18"/>
</Style>
</Window.Resources>
<Grid>
<StackPanel>
<Button Width="100" Height="28" Content="Button1"/>
<Button Width="100" Height="28" Content="Button2"/>
<Button Width="100" Height="28" Content="Button3"/>
</StackPanel>
</Grid>
</Window>
관련 링크
스타일의 암시적 적용
Reference
이 문제에 관하여(Visual Studio/WPF > Resources/Style > x:Key를 지정하지 않는 Implicit key 예제), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/7of9/items/f2e39938d00a8f0aca1a텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)