2017년 6월 27일 화요일

[C#] WPFUserControl

1. UserControl  생성 : 반드시 네임을 지정한다. 아래는 네임 스페이스가 Menu이다.
             Name="user1"
             xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
             xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
             xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
             xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
             xmlns:local="clr-namespace:Menu"
             mc:Ignorable="d"
             Width="Auto" Height="Auto" d:DesignWidth="307.031" d:DesignHeight="395.312"
             >
   
       
           
           
       


       
           
           
       
       
           
       
       
   



2. 메인 폼에서 
xmlns:local="clr-namespace:Menu"


3.만약 네임스페이스가 다를경우 : Menu.UC 이다

             Name="Ucin1"
             xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
             xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
             xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" 
             xmlns:d="http://schemas.microsoft.com/expression/blend/2008" 
             xmlns:local="clr-namespace:Menu.UC"
             mc:Ignorable="d" 
             d:DesignHeight="300" d:DesignWidth="300">
   
       
           
           
       

       
       


   

4. 메인폼에서 다음을 추가한다. : local2 
xmlns:local2="clr-namespace:Menu.UC"



댓글 없음:

댓글 쓰기