■ TreeView 클래스를 사용해 자동 스크롤 차단 트리뷰를 만드는 방법을 보여준다.
▶ TestItem.cs
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 |
using System.ComponentModel; namespace TestProject { /// <summary> /// 테스트 항목 /// </summary> public class TestItem : INotifyPropertyChanged { //////////////////////////////////////////////////////////////////////////////////////////////////// Event ////////////////////////////////////////////////////////////////////////////////////////// Public #region 속성 변경시 이벤트 - PropertyChanged /// <summary> /// 속성 변경시 이벤트 /// </summary> public event PropertyChangedEventHandler PropertyChanged; #endregion //////////////////////////////////////////////////////////////////////////////////////////////////// Field ////////////////////////////////////////////////////////////////////////////////////////// Private #region Field /// <summary> /// 명칭 /// </summary> private string name; /// <summary> /// 선택 여부 /// </summary> private bool isSelected; /// <summary> /// 확장 여부 /// </summary> private bool isExpanded; /// <summary> /// 자식 리스트 /// </summary> private BindingList<TestItem> childList; #endregion //////////////////////////////////////////////////////////////////////////////////////////////////// Property ////////////////////////////////////////////////////////////////////////////////////////// Public #region 명칭 - Name /// <summary> /// 명칭 /// </summary> public string Name { get { return this.name; } set { this.name = value; FirePropertyChangedEvent("Name"); } } #endregion #region 선택 여부 - IsSelected /// <summary> /// 선택 여부 /// </summary> public bool IsSelected { get { return this.isSelected; } set { this.isSelected = value; FirePropertyChangedEvent("IsSelected"); } } #endregion #region 확장 여부 - IsExpanded /// <summary> /// 확장 여부 /// </summary> public bool IsExpanded { get { return this.isExpanded; } set { this.isExpanded = value; FirePropertyChangedEvent("IsExpanded"); } } #endregion #region 자식 리스트 - ChildList /// <summary> /// 자식 리스트 /// </summary> public BindingList<TestItem> ChildList { get { return this.childList; } set { this.childList = value; FirePropertyChangedEvent("ChildList"); } } #endregion //////////////////////////////////////////////////////////////////////////////////////////////////// Method ////////////////////////////////////////////////////////////////////////////////////////// private #region 속성 변경시 이벤트 발생시키기 - FirePropertyChangedEvent(propertyName) /// <summary> /// 속성 변경시 이벤트 발생시키기 /// </summary> /// <param name="propertyName">속성명</param> private void FirePropertyChangedEvent(string propertyName) { if(PropertyChanged != null) { PropertyChangedEventArgs e = new PropertyChangedEventArgs(propertyName); PropertyChanged(this, e); } } #endregion } } |
▶ NoAutoScrollTreeViewItem.cs
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 |
using System.Windows; using System.Windows.Controls; namespace TestProject { /// <summary> /// 자동 스크롤 차단 트리 뷰 항목 /// </summary> public class NoAutoScrollTreeViewItem : TreeViewItem { //////////////////////////////////////////////////////////////////////////////////////////////////// Constructor ////////////////////////////////////////////////////////////////////////////////////////// Public #region 생성자 - NoAutoScrollTreeViewItem() /// <summary> /// 생성자 /// </summary> public NoAutoScrollTreeViewItem() : base() { RequestBringIntoView += delegate(object sender, RequestBringIntoViewEventArgs e) { e.Handled = true; }; } #endregion //////////////////////////////////////////////////////////////////////////////////////////////////// Method ////////////////////////////////////////////////////////////////////////////////////////// Protected #region 항목 컨테이너 구하기 (오버라이드) - GetContainerForItemOverride() /// <summary> /// 항목 컨테이너 구하기 (오버라이드) /// </summary> /// <returns>항목 컨테이너</returns> protected override DependencyObject GetContainerForItemOverride() { return new NoAutoScrollTreeViewItem(); } #endregion } } |
▶ NoAutoScrollTreeView.cs
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 |
using System.Windows; using System.Windows.Controls; namespace TestProject { /// <summary> /// 자동 스크롤 차단 트리 뷰 /// </summary> public class NoAutoScrollTreeView : TreeView { //////////////////////////////////////////////////////////////////////////////////////////////////// Method ////////////////////////////////////////////////////////////////////////////////////////// Protected #region 항목 컨테이너 구하기 (오버라이드) - GetContainerForItemOverride() /// <summary> /// 항목 컨테이너 구하기 (오버라이드) /// </summary> /// <returns>항목 컨테이너</returns> protected override DependencyObject GetContainerForItemOverride() { return new NoAutoScrollTreeViewItem(); } #endregion } } |
▶ MainWindow.xaml
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 |
<Window x:Class="TestProject.MainWindow" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:local="clr-namespace:TestProject" Title="TreeView 클래스 : 자동 스크롤 차단 트리뷰 만들기" Width="800" Height="600" FontFamily="나눔고딕코딩" FontSize="16"> <Grid> <local:NoAutoScrollTreeView x:Name="treeView" Width="200" Height="200"> <local:NoAutoScrollTreeView.ItemContainerStyle> <Style TargetType="{x:Type TreeViewItem}"> <Setter Property="IsExpanded" Value="{Binding IsExpanded, Mode=TwoWay}" /> <Setter Property="IsSelected" Value="{Binding IsSelected, Mode=TwoWay}" /> </Style> </local:NoAutoScrollTreeView.ItemContainerStyle> <local:NoAutoScrollTreeView.ItemTemplate> <HierarchicalDataTemplate ItemsSource="{Binding ChildList}"> <TextBlock Text="{Binding Name}" /> </HierarchicalDataTemplate> </local:NoAutoScrollTreeView.ItemTemplate> </local:NoAutoScrollTreeView> </Grid> </Window> |
▶ MainWindow.xaml.cs
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 |
using System.ComponentModel; using System.Windows; namespace TestProject { /// <summary> /// 메인 윈도우 /// </summary> public partial class MainWindow { //////////////////////////////////////////////////////////////////////////////////////////////////// Constructor ////////////////////////////////////////////////////////////////////////////////////////// Public #region 생성자 - MainWindow() /// <summary> /// 생성자 /// </summary> public MainWindow() { InitializeComponent(); Loaded += Window_Loaded; } #endregion //////////////////////////////////////////////////////////////////////////////////////////////////// Method ////////////////////////////////////////////////////////////////////////////////////////// Private #region 윈도우 로드시 처리하기 - Window_Loaded(sender, e) /// <summary> /// 윈도우 로드시 처리하기 /// </summary> /// <param name="sender">이벤트 발생자</param> /// <param name="e">이벤트 인자</param> private void Window_Loaded(object sender, RoutedEventArgs e) { BindingList<TestItem> list = new BindingList<TestItem>(); for(int i = 0; i < 10; i++) { TestItem item = new TestItem(); item.Name = "test tree view item " + i.ToString(); item.ChildList = new BindingList<TestItem>(); list.Add(item); for(int j = 0; j < 5; j++) { TestItem childItem = new TestItem(); childItem.Name = "test tree view item " + i.ToString(); item.ChildList.Add(childItem); } } this.treeView.ItemsSource = list; } #endregion } } |