[C#/WPF] StaticResource 태그 확장 : 리소스 사용하기
■ StaticResource 태그 확장을 사용해 리소스를 사용하는 방법을 보여준다. ▶ 예제 코드 (XAML)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
<StackPanel xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:s="clr-namespace:System;assembly=mscorlib"> <StackPanel.Resources> <s:Double x:Key="FontSizeKey"> 20 </s:Double> </StackPanel.Resources> <Button HorizontalAlignment="Center" VerticalAlignment="Center" Margin="10" FontSize="{StaticResource FontSizeKey}"> 테스트 </Button> </StackPanel> |