■ mc:Ignorable 속성을 사용해 무시할 수 있는 XML 네임스페이스 접두사를 설정하는 방법을 보여준다.
▶ 예제 코드 (XAML)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
<Window x:Class="TestProject.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" mc:Ignorable="d" d:DesignWidth="800" d:DesignHeight="600" Title="mc:Ignorable 속성 : 무시할 수 있는 XML 네임스페이스 접두사 설정하기" FontFamily="나눔고딕코딩" FontSize="16"> <Grid /> </Window> |