본문으로 바로가기

대개의 경우, 사용자 컨트롤을 만들어서 XAML 디자인에 올려놓으면 다음과 같은 식으로 구성이 됩니다.

 

<Window x:Class="WpfApplication1.Window1"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    Title="Window1" Height="300" Width="300" 
    xmlns:mycontrol="clr-namespace:WpfControlLibrary1;assembly=WpfControlLibrary1">
    <Grid>
        <mycontrol:UserControl1 />
    </Grid>
</Window>

 

이렇게 되는 경우, 각 컨트롤의 네임스페이스 및 어셈블리에 따라서 xmlns 항목이 별도로 추가되어야 합니다. 또는, 간혹 컨트롤을 다른 네임스페이스나 어셈블리로 옮길려고 하면 위의 구문이 들어있는 모든 XAML 코드를 수정해야 하는 불편함이 있습니다.

 

다른 3rd-party 컨트롤 업체에서는 이를 어떻게 해결하고 있을까요? 가령 Infragistics 컨트롤을 WPF 디자이너 화면에 올려놓으면 다음과 같이 XAML 이 구성됩니다.

 

<Window x:Class="WpfApplication1.Window1"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    Title="Window1" Height="300" Width="300" 
    xmlns:igDP="http://infragistics.com/DataPresenter">
    <Grid>
        <igDP:XamDataGrid Name="xamDataGrid1" />
    </Grid>
</Window>

 

보는 것처럼, 해당 컨트롤이 정의된 .NET CLR Namespace 와 Assembly 정보를 표시하지 않고 단순히 XML Namespace로 연결하는 것을 볼 수 있습니다. 이렇게 함으로써 향후 유지보수가 간소화되는 장점이 있습니다.

 

문제는 이걸 어떻게 구현하느냐는 것입니다.

먼저, 해당 CLR 네임스페이스를 사용하지 않고 XML 네임스페이스로 연결하는 것은 다음과 같이 XmlnsDefinition 특성을 Assembly 수준에서 정의하는 것으로 해결할 수 있습니다.

 

[assembly: XmlnsDefinition("http://schemas.test.co.kr/wpf/", "WpfControlLibrary1")]

 

그럼, 위의 첫번째 코드 예제를 다음과 같이 변경하는 것이 가능합니다.

<Window x:Class="WpfApplication1.Window1"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    Title="Window1" Height="300" Width="300" 
    xmlns:mycontrol="http://schemas.test.co.kr/wpf/">
    <Grid>
        <mycontrol:UserControl1 />
    </Grid>
</Window>

 

그런데, 디자인 화면에서 위에서 정의된 UserControl1을 끌어다 놓으면 xmlns Prefix가 "Custom" 같은 것으로 임의의 문자열로 정해지는 것을 확인할 수 있습니다. 즉, Infragistics 처럼 "igDP"라는 특정 문자열을 사용하려고 하면 다음과 같은 추가적인 특성을 더 정의해 주어야 합니다.

 

[assembly: XmlnsPrefix("hhttp://schemas.test.co.kr/wpf/", "mycontrol")]

 

XmlnsPrefix / XmlnsDefinition 2가지 특성을 이용해서 컨트롤을 정의하시기 바랍니다.

 

[출처] http://www.sysnet.pe.kr/

'Development > C#' 카테고리의 다른 글

WPF UI 업데이트 반영  (0) 2014.07.14
enum의 Flag 연산  (0) 2014.05.15
C# 데이터형식  (0) 2013.04.15
구성파일(Configuration File)  (0) 2013.04.11
Enum 변환  (0) 2013.02.13