728x90
반응형
728x170
▶ ExplorerItem.cs
using System.Collections.ObjectModel;
using System.ComponentModel;
namespace TestProject
{
/// <summary>
/// 탐색기 항목
/// </summary>
public class ExplorerItem : INotifyPropertyChanged
{
//////////////////////////////////////////////////////////////////////////////////////////////////// Enumeration
////////////////////////////////////////////////////////////////////////////////////////// Public
#region 탐색기 항목 타입 - ExplorerItemType
/// <summary>
/// 탐색기 항목 타입
/// </summary>
public enum ExplorerItemType
{
Folder,
File
};
#endregion
//////////////////////////////////////////////////////////////////////////////////////////////////// Event
////////////////////////////////////////////////////////////////////////////////////////// Public
#region 속성 변경시 - PropertyChanged
/// <summary>
/// 속성 변경시
/// </summary>
public event PropertyChangedEventHandler PropertyChanged;
#endregion
//////////////////////////////////////////////////////////////////////////////////////////////////// Field
////////////////////////////////////////////////////////////////////////////////////////// Private
#region Field
/// <summary>
/// 자식 컬렉션
/// </summary>
private ObservableCollection<ExplorerItem> children;
/// <summary>
/// 확장 여부
/// </summary>
private bool isExpanded;
/// <summary>
/// 선택 여부
/// </summary>
private bool isSelected;
#endregion
//////////////////////////////////////////////////////////////////////////////////////////////////// Property
////////////////////////////////////////////////////////////////////////////////////////// Public
#region 명칭 - Name
/// <summary>
/// 명칭
/// </summary>
public string Name { get; set; }
#endregion
#region 타입 - Type
/// <summary>
/// 타입
/// </summary>
public ExplorerItemType Type { get; set; }
#endregion
#region 자식 컬렉션 - Children
/// <summary>
/// 자식 컬렉션
/// </summary>
public ObservableCollection<ExplorerItem> Children
{
get
{
if(this.children == null)
{
this.children = new ObservableCollection<ExplorerItem>();
}
return this.children;
}
set
{
this.children = value;
}
}
#endregion
#region 확장 여부 - IsExpanded
/// <summary>
/// 확장 여부
/// </summary>
public bool IsExpanded
{
get
{
return this.isExpanded;
}
set
{
if(this.isExpanded != value)
{
this.isExpanded = value;
FirePropertyChangedEvent("IsExpanded");
}
}
}
#endregion
#region 선택 여부 - IsSelected
/// <summary>
/// 선택 여부
/// </summary>
public bool IsSelected
{
get
{
return this.isSelected;
}
set
{
if(this.isSelected != value)
{
this.isSelected = value;
FirePropertyChangedEvent("IsSelected");
}
}
}
#endregion
//////////////////////////////////////////////////////////////////////////////////////////////////// Method
////////////////////////////////////////////////////////////////////////////////////////// Private
#region 속성 변경시 이벤트 발생시키기 - FirePropertyChangedEvent(propertyName)
/// <summary>
/// 속성 변경시 이벤트 발생시키기
/// </summary>
/// <param name="propertyName">속성명</param>
private void FirePropertyChangedEvent(string propertyName)
{
PropertyChanged?.Invoke(this, new PropertyChangedEventArgs(propertyName));
}
#endregion
}
}
728x90
▶ ExplorerItemDataTemplateSelector.cs
using Windows.UI.Xaml;
using Windows.UI.Xaml.Controls;
namespace TestProject
{
/// <summary>
/// 탐색기 항목 데이터 템플리트 셀렉터
/// </summary>
public class ExplorerItemDataTemplateSelector : DataTemplateSelector
{
//////////////////////////////////////////////////////////////////////////////////////////////////// Property
////////////////////////////////////////////////////////////////////////////////////////// Public
#region 폴더 템플리트 - FolderTemplate
/// <summary>
/// 폴더 템플리트
/// </summary>
public DataTemplate FolderTemplate { get; set; }
#endregion
#region 파일 템플리트 - FileTemplate
/// <summary>
/// 파일 템플리트
/// </summary>
public DataTemplate FileTemplate { get; set; }
#endregion
//////////////////////////////////////////////////////////////////////////////////////////////////// Method
////////////////////////////////////////////////////////////////////////////////////////// Protected
#region 템플리트 선택하기 (코어) - SelectTemplateCore(item)
/// <summary>
/// 템플리트 선택하기 (코어)
/// </summary>
/// <param name="item">항목</param>
/// <returns>데이터 템플리트</returns>
protected override DataTemplate SelectTemplateCore(object item)
{
ExplorerItem explorerItem = item as ExplorerItem;
return explorerItem.Type == ExplorerItem.ExplorerItemType.Folder ? FolderTemplate : FileTemplate;
}
#endregion
}
}
300x250
▶ MainPage.xaml
<Page x:Class="TestProject.MainPage"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:muxc="using:Microsoft.UI.Xaml.Controls"
xmlns:local="using:TestProject"
Background="{ThemeResource ApplicationPageBackgroundThemeBrush}"
FontFamily="나눔고딕코딩"
FontSize="16">
<Page.Resources>
<DataTemplate x:Key="FolderDataTemplateKey" x:DataType="local:ExplorerItem">
<muxc:TreeViewItem AutomationProperties.Name="{x:Bind Name}"
IsExpanded="True"
ItemsSource="{x:Bind Children}">
<StackPanel Orientation="Horizontal">
<Image
Width="20"
Source="/IMAGE/folder.png" />
<TextBlock Margin="0 0 10 0" />
<TextBlock Text="{x:Bind Name}" />
</StackPanel>
</muxc:TreeViewItem>
</DataTemplate>
<DataTemplate x:Key="FileDataTemplateKey" x:DataType="local:ExplorerItem">
<muxc:TreeViewItem AutomationProperties.Name="{x:Bind Name}">
<StackPanel Orientation="Horizontal">
<Image
Width="20"
Source="/IMAGE/file.png" />
<TextBlock Margin="0 0 10 0" />
<TextBlock Text="{x:Bind Name}" />
</StackPanel>
</muxc:TreeViewItem>
</DataTemplate>
<local:ExplorerItemDataTemplateSelector x:Key="ExplorerItemDataTemplateSelectorKey"
FolderTemplate="{StaticResource FolderDataTemplateKey}"
FileTemplate="{StaticResource FileDataTemplateKey}" />
</Page.Resources>
<Grid>
<Border
HorizontalAlignment="Center"
VerticalAlignment="Center"
BorderThickness="1"
BorderBrush="{ThemeResource TextControlBorderBrush}">
<muxc:TreeView x:Name="treeView"
Width="400"
Height="400"
ItemTemplateSelector="{StaticResource ExplorerItemDataTemplateSelectorKey}"
ItemsSource="{x:Bind explorerItemCollection}" />
</Border>
</Grid>
</Page>
▶ MainPage.xaml.cs
using System.Collections.ObjectModel;
using Windows.Foundation;
using Windows.Graphics.Display;
using Windows.UI.ViewManagement;
using Windows.UI.Xaml;
using Windows.UI.Xaml.Controls;
namespace TestProject
{
/// <summary>
/// 메인 페이지
/// </summary>
public sealed partial class MainPage : Page
{
//////////////////////////////////////////////////////////////////////////////////////////////////// Field
////////////////////////////////////////////////////////////////////////////////////////// Private
#region Field
/// <summary>
/// 탐색기 항목 컬렉션
/// </summary>
private ObservableCollection<ExplorerItem> explorerItemCollection;
#endregion
//////////////////////////////////////////////////////////////////////////////////////////////////// Constructor
////////////////////////////////////////////////////////////////////////////////////////// Public
#region 생성자 - MainPage()
/// <summary>
/// 생성자
/// </summary>
public MainPage()
{
InitializeComponent();
#region 윈도우 크기를 설정한다.
double width = 800d;
double height = 600d;
double dpi = (double)DisplayInformation.GetForCurrentView().LogicalDpi;
ApplicationView.PreferredLaunchWindowingMode = ApplicationViewWindowingMode.PreferredLaunchViewSize;
Size windowSize = new Size(width * 96d / dpi, height * 96d / dpi);
ApplicationView.PreferredLaunchViewSize = windowSize;
Window.Current.Activate();
ApplicationView.GetForCurrentView().TryResizeView(windowSize);
#endregion
#region 윈도우 제목을 설정한다.
ApplicationView.GetForCurrentView().Title = "TreeView 엘리먼트 : ItemTemplateSelector 속성 사용하기";
#endregion
this.explorerItemCollection = GetExplorerItemCollection();
}
#endregion
//////////////////////////////////////////////////////////////////////////////////////////////////// Method
////////////////////////////////////////////////////////////////////////////////////////// Private
#region 탐색기 항목 컬렉션 구하기 - GetExplorerItemCollection()
/// <summary>
/// 탐색기 항목 컬렉션 구하기
/// </summary>
/// <returns>탐색기 항목 컬렉션</returns>
private ObservableCollection<ExplorerItem> GetExplorerItemCollection()
{
ObservableCollection<ExplorerItem> collection = new ObservableCollection<ExplorerItem>();
ExplorerItem item1 = new ExplorerItem()
{
Name = "Work Documents",
Type = ExplorerItem.ExplorerItemType.Folder,
Children =
{
new ExplorerItem()
{
Name = "Functional Specifications",
Type = ExplorerItem.ExplorerItemType.Folder,
Children =
{
new ExplorerItem()
{
Name = "TreeView spec",
Type = ExplorerItem.ExplorerItemType.File
}
}
},
new ExplorerItem()
{
Name = "Feature Schedule",
Type = ExplorerItem.ExplorerItemType.File
},
new ExplorerItem()
{
Name = "Overall Project Plan",
Type = ExplorerItem.ExplorerItemType.File
},
new ExplorerItem()
{
Name = "Feature Resources Allocation",
Type = ExplorerItem.ExplorerItemType.File
}
}
};
ExplorerItem item2 = new ExplorerItem()
{
Name = "Personal Folder",
Type = ExplorerItem.ExplorerItemType.Folder,
Children =
{
new ExplorerItem()
{
Name = "Home Remodel Folder",
Type = ExplorerItem.ExplorerItemType.Folder,
Children =
{
new ExplorerItem()
{
Name = "Contractor Contact Info",
Type = ExplorerItem.ExplorerItemType.File
},
new ExplorerItem()
{
Name = "Paint Color Scheme",
Type = ExplorerItem.ExplorerItemType.File
},
new ExplorerItem()
{
Name = "Flooring Woodgrain type",
Type = ExplorerItem.ExplorerItemType.File
},
new ExplorerItem()
{
Name = "Kitchen Cabinet Style",
Type = ExplorerItem.ExplorerItemType.File
}
}
}
}
};
collection.Add(item1);
collection.Add(item2);
return collection;
}
#endregion
}
}
728x90
반응형
그리드형(광고전용)
'C# > UWP' 카테고리의 다른 글
[C#/UWP] TimePicker 엘리먼트 사용하기 (0) | 2021.06.24 |
---|---|
[C#/UWP] DatePicker 엘리먼트 사용하기 (0) | 2021.06.24 |
[C#/UWP] CalendarView 엘리먼트 사용하기 (0) | 2021.06.23 |
[C#/UWP] Language 클래스 : IsWellFormed 정적 메소드를 사용해 BCP-47 언어 태그 무결성 검증하기 (0) | 2021.06.23 |
[C#/UWP] CalendarDatePicker 엘리먼트 사용하기 (0) | 2021.06.23 |
[C#/UWP] TreeView 엘리먼트 : ItemsSource 속성 사용하기 (0) | 2021.06.23 |
[C#/UWP] TreeView 엘리먼트 : SelectionMode 속성을 사용해 멀티 선택하기 (0) | 2021.06.23 |
[C#/UWP] TreeView 엘리먼트 : AllowDrop/CanDragItems 속성을 사용해 드래그 & 드롭 지원하기 (0) | 2021.06.23 |
[C#/UWP] ListView 엘리먼트 : 이미지를 갖는 항목 표시하기 (0) | 2021.06.23 |
[C#/UWP] ListView 엘리먼트 : 로그 또는 메시지 표시시 아래에서부터 항목 추가하기 (0) | 2021.06.23 |
댓글을 달아 주세요