📄 treelistviewitem.cs
字号:
if(ListView != null)
if(ListView.InvokeRequired)
throw(new Exception("Invoke required"));
TreeListViewItemCollection collection = this.Container;
if(collection != null) collection.Remove(this);
}
/// <summary>
/// Check if this node is one of the parents of an item (recursively)
/// </summary>
/// <param name="item"></param>
/// <returns></returns>
public bool IsAParentOf(TreeListViewItem item)
{
TreeListViewItem[] parents = item.ParentsInHierarch;
foreach(TreeListViewItem parent in parents)
if(parent == this) return(true);
return(false);
}
/// <summary>
/// Ensure that the node is visible (expand parents and scroll listview so that the item is visible)
/// </summary>
new public void EnsureVisible()
{
if(!Visible)
{
if(IsInATreeListView)
TreeListView.BeginUpdate();
if(ListView != null)
ListView.Invoke(new MethodInvoker(ExpandParents));
else ExpandParents();
if(TreeListView != null)
TreeListView.EndUpdate();
}
base.EnsureVisible();
}
internal void ExpandParents()
{
if(IsInATreeListView)
Debug.Assert(!ListView.InvokeRequired);
if(Parent != null)
{
if(!Parent.IsExpanded) Parent.ExpandInternal();
Parent.ExpandParents();
}
}
#endregion
#region Indentation
/// <summary>
/// Set the indentation using the level of this item
/// </summary>
/// <returns>True if successfull, false otherwise</returns>
public bool SetIndentation()
{
if(!IsInATreeListView) return false;
bool res = true;
APIsStructs.LV_ITEM lvi = new APIsStructs.LV_ITEM();
lvi.iItem = Index;
lvi.iIndent = Level;
if(TreeListView.ShowPlusMinus) lvi.iIndent++;
lvi.mask = APIsEnums.ListViewItemFlags.INDENT;
try
{
APIsUser32.SendMessage(
ListView.Handle,
APIsEnums.ListViewMessages.SETITEM,
0,
ref lvi);
}
catch
{
res = false;
}
return res;
}
/// <summary>
/// Refresh indentation of this item and of its children (recursively)
/// </summary>
/// <param name="recursively">Recursively</param>
public void RefreshIndentation(bool recursively)
{
if(ListView == null) return;
if(ListView.InvokeRequired)
throw(new Exception("Invoke Required"));
if(!this.Visible) return;
SetIndentation();
if(recursively)
{
try
{
foreach(TreeListViewItem item in this.Items)
item.RefreshIndentation(true);
}
catch{}
}
}
#endregion
#region Expand
/// <summary>
/// Expand
/// </summary>
public void Expand()
{
if(IsInATreeListView)
if (ListView.InvokeRequired)
throw(new Exception("Invoke Required"));
if(TreeListView != null) TreeListView.BeginUpdate();
ExpandInternal();
if(TreeListView != null) TreeListView.EndUpdate();
}
internal void ExpandInternal()
{
if(IsInATreeListView)
if (ListView.InvokeRequired)
throw(new Exception("Invoke Required"));
TreeListViewItem selItem = null;
if(TreeListView != null) selItem = TreeListView.FocusedItem;
// Must set ListView.checkDirection to CheckDirection.None.
// Forbid recursively checking.
CheckDirection oldDirection = CheckDirection.All;
if(ListView != null)
{
oldDirection = ListView._checkDirection;
ListView._checkDirection = CheckDirection.None;
}
// The item wasn't expanded -> raise an event
if(Visible && !_isexpanded && ListView != null)
{
TreeListViewCancelEventArgs e = new TreeListViewCancelEventArgs(
this, TreeListViewAction.Expand);
ListView.RaiseBeforeExpand(e);
if(e.Cancel) return;
}
if(Visible)
for(int i = Items.Count - 1 ; i >= 0 ;i--)
{
TreeListViewItem item = this.Items[i];
if(!item.Visible)
{
ListView LView = this.ListView;
LView.Items.Insert(
this.Index + 1, item);
item.SetIndentation();
}
if(item.IsExpanded) item.Expand();
}
// The item wasn't expanded -> raise an event
if(Visible && !_isexpanded && IsInATreeListView)
{
this._isexpanded = true;
TreeListViewEventArgs e = new TreeListViewEventArgs(
this, TreeListViewAction.Expand);
ListView.RaiseAfterExpand(e);
if (AfterExpand != null) AfterExpand(this);
}
this._isexpanded = true;
// Reset ListView.checkDirection
if(IsInATreeListView)
ListView._checkDirection = oldDirection;
if(TreeListView != null && selItem != null)
if(selItem.Visible)
selItem.Focused = true;
}
/// <summary>
/// Expand all sub nodes
/// </summary>
public void ExpandAll()
{
if(IsInATreeListView)
if(ListView.InvokeRequired)
throw(new Exception("Invoke Required"));
if(TreeListView != null) TreeListView.BeginUpdate();
ExpandAllInternal();
if(TreeListView != null) TreeListView.EndUpdate();
}
internal void ExpandAllInternal()
{
if(IsInATreeListView)
if(ListView.InvokeRequired)
throw(new Exception("Invoke Required"));
ExpandInternal();
// Expand canceled -> stop expandall for the children of this item
if(!IsExpanded) return;
for(int i = 0 ; i < Items.Count ; i++)
Items[i].ExpandAllInternal();
}
#endregion
#region Collapse
/// <summary>
/// Collapse
/// </summary>
public void Collapse()
{
if(IsInATreeListView)
if(ListView.InvokeRequired)
throw(new Exception("Invoke Required"));
if(TreeListView != null) TreeListView.BeginUpdate();
CollapseInternal();
if(TreeListView != null) TreeListView.EndUpdate();
}
internal void CollapseInternal()
{
if(IsInATreeListView)
if(ListView.InvokeRequired)
throw(new Exception("Invoke Required"));
TreeListViewItem selItem = null;
if(TreeListView != null) selItem = TreeListView.FocusedItem;
// The item was expanded -> raise an event
if(Visible && _isexpanded && ListView != null)
{
TreeListViewCancelEventArgs e = new TreeListViewCancelEventArgs(
this, TreeListViewAction.Collapse);
ListView.RaiseBeforeCollapse(e);
if(e.Cancel) return;
}
// Collapse
if(this.Visible)
foreach(TreeListViewItem item in Items)
item.Hide();
// The item was expanded -> raise an event
if(Visible && _isexpanded && IsInATreeListView)
{
this._isexpanded = false;
TreeListViewEventArgs e = new TreeListViewEventArgs(
this, TreeListViewAction.Collapse);
ListView.RaiseAfterCollapse(e);
if(AfterCollapse != null) AfterCollapse(this);
}
this._isexpanded = false;
if(IsInATreeListView && selItem != null)
{
if(selItem.Visible)
selItem.Focused = true;
else
{
ListView listview = (ListView) TreeListView;
listview.SelectedItems.Clear();
TreeListViewItem[] items = selItem.ParentsInHierarch;
for(int i = items.Length - 1; i >= 0; i--)
if(items[i].Visible)
{
items[i].Focused = true;
break;
}
}
}
}
/// <summary>
/// Collapse all sub nodes
/// </summary>
public void CollapseAll()
{
if(IsInATreeListView)
if(ListView.InvokeRequired)
throw(new Exception("Invoke Required"));
if(TreeListView != null) TreeListView.BeginUpdate();
CollapseAllInternal();
if(TreeListView != null) TreeListView.EndUpdate();
}
internal void CollapseAllInternal()
{
if(IsInATreeListView)
if(ListView.InvokeRequired)
throw(new Exception("Invoke Required"));
foreach(TreeListViewItem item in this.Items)
item.CollapseAllInternal();
CollapseInternal();
}
/// <summary>
/// Hide this node (remove from TreeListView but
/// not from associated Parent items)
/// </summary>
internal void Hide()
{
if(IsInATreeListView)
if(ListView.InvokeRequired)
throw(new Exception("Invoke Required"));
foreach(TreeListViewItem item in Items) item.Hide();
if(Visible) base.Remove();
Selected = false;
}
#endregion
#region DrawPlusMinus
internal void DrawPlusMinus()
{
if(!IsInATreeListView) return;
if(TreeListView._updating) return;
Graphics g = Graphics.FromHwnd(TreeListView.Handle);
DrawPlusMinus(g);
g.Dispose();
}
internal void DrawPlusMinus(Graphics g)
{
if(!IsInATreeListView) return;
if(TreeListView._updating) return;
Debug.Assert(!TreeListView.InvokeRequired);
if(Items.Count == 0 || TreeListView.Columns.Count == 0) return;
Drawing.Imaging.ImageAttributes attr = new Drawing.Imaging.ImageAttributes();
attr.SetColorKey(Color.Transparent, Color.Transparent);
if(TreeListView.Columns[0].Width > (Level + 1) * SystemInformation.SmallIconSize.Width)
g.DrawImage(
TreeListView.plusMinusImageList.Images[IsExpanded ? 1 : 0],
GetBounds(TreeListViewItemBoundsPortion.PlusMinus),
0, 0, SystemInformation.SmallIconSize.Width, SystemInformation.SmallIconSize.Height,
GraphicsUnit.Pixel, attr);
attr.Dispose();
}
#endregion
#region DrawPlusMinusLines
internal void DrawPlusMinusLines()
{
if(!IsInATreeListView) return;
if(TreeListView._updating) return;
Graphics g = Graphics.FromHwnd(TreeListView.Handle);
DrawPlusMinusLines(g);
g.Dispose();
}
internal void DrawPlusMinusLines(Graphics g)
{
if(!IsInATreeListView) return;
if(TreeListView._updating) return;
Debug.Assert(!TreeListView.InvokeRequired);
if(!TreeListView.ShowPlusMinus || TreeListView.Columns.Count == 0) return;
int itemLevel = Level;
Rectangle plusminusRect = GetBounds(TreeListViewItemBoundsPortion.PlusMinus);
Rectangle entireRect = GetBounds(TreeListViewItemBoundsPortion.Entire);
Drawing.Drawing2D.HatchBrush hb = new Drawing.Drawing2D.HatchBrush(Drawing.Drawing2D.HatchStyle.Percent50, TreeListView.PlusMinusLineColor, BackColor);
Pen pen = new Pen(hb);
Point point1, point2;
#region Vertical line
point1 = new Point(
plusminusRect.Right - SystemInformation.SmallIconSize.Width / 2 - 1,
entireRect.Top);
point2 = new Point( point1.X, entireRect.Bottom);
// If ListView has no items that have the same level before this item
if(!HasLevelBeforeItem(itemLevel)) point1.Y += SystemInformation.SmallIconSize.Height / 2;
// If ListView has no items that have the same level after this item
if(!HasLevelAfterItem(itemLevel)) point2.Y -= SystemInformation.SmallIconSize.Height / 2 + 1;
if(TreeListView.Columns[0].Width > (Level + 1) * SystemInformation.SmallIconSize.Width)
g.DrawLine(pen, point1, point2);
#endregion
#region Horizontal line
point1 = new Point(
plusminusRect.Right - SystemInformation.SmallIconSize.Width / 2 - 1,
GetBounds(TreeListViewItemBoundsPortion.Entire).Top + SystemInformation.SmallIconSize.Height /2);
point2 = new Point(plusminusRect.Right + 1, point1.Y);
if(TreeListView.Columns[0].Width > (Level + 1) * SystemInformation.SmallIconSize.Width)
g.DrawLine(pen, point1, point2);
#endregion
#region Lower Level lines
for(int level = Level - 1; level > -1; level--)
if(HasLevelAfterItem(level))
{
point1 = new Point(
SystemInformation.SmallIconSize.Width * (2*level + 1) / 2 + entireRect.X,
entireRect.Top);
point2 = new Point(
point1.X, entireRect.Bottom);
if(TreeListView.Columns[0].Width > (level + 1) * SystemInformation.SmallIconSize.Width)
g.DrawLine(pen, point1, point2);
}
#endregion
pen.Dispose();
hb.Dispose();
}
internal bool HasLevelAfterItem(int level)
{
if(TreeListView == null) return false;
Debug.Assert(!TreeListView.InvokeRequired);
int lev = Level, tempLevel;
ListView listview = (ListView) TreeListView;
for(int i = Index + 1; i < listview.Items.Count; i++)
{
tempLevel = ((TreeListViewItem)listview.Items[i]).Level;
if(tempLevel == level) return true;
if(tempLevel < level) return false;
}
return false;
}
internal bool HasLevelBeforeItem(int level)
{
if(TreeListView == null) return false;
Debug.Assert(!TreeListView.InvokeRequired);
int lev = Level, tempLevel;
ListView listview = (ListView) TreeListView;
for(int i = Index - 1; i > -1; i--)
{
tempLevel = ((TreeListViewItem)listview.Items[i]).Level;
if(tempLevel <= level) return true;
}
return false;
}
#endregion
#region DrawFocusCues
internal void DrawFocusCues()
{
if(!IsInATreeListView) return;
if(TreeListView._updating) return;
if(TreeListView.HideSelection && !TreeListView.Focused) return;
Graphics g = Graphics.FromHwnd(TreeListView.Handle);
if(Visible)
{
Rectangle entireitemrect = GetBounds(ItemBoundsPortion.Entire);
if(entireitemrect.Bottom > entireitemrect.Height * 1.5f)
{
Rectangle labelitemrect = GetBounds(ItemBoundsPortion.Label);
Rectangle itemonlyrect = GetBounds(ItemBoundsPortion.ItemOnly);
Rectangle selecteditemrect = new Rectangle(
labelitemrect.Left,
labelitemrect.Top,
TreeListView.FullRowSelect ? entireitemrect.Width - labelitemrect.Left - 1 : itemonlyrect.Width - SystemInformation.SmallIconSize.Width - 1,
labelitemrect.Height - 1);
Pen pen = new Pen(TreeListView.Focused && Selected ? Color.Blue : ColorUtil.CalculateColor(SystemColors.Highlight, SystemColors.Window, 130));
for(int i = 1; i < TreeListView.Columns.Count; i++)
{
Rectangle rect = TreeListView.GetSubItemRect(Index, i);
if(rect.X < selecteditemrect.X)
selecteditemrect = new Rectangle(
rect.X, selecteditemrect.Y,
selecteditemrect.Width + (selecteditemrect.X-rect.X),
selecteditemrect.Height);
}
g.DrawRectangle(new Pen(ColorUtil.VSNetSelectionColor), selecteditemrect);
// Fill the item (in CommCtl V6, the selection area is not always the same :
// label only or first column). I decided to always draw the entire column...
if(!TreeListView.FullRowSelect)
g.FillRectangle(
new SolidBrush(BackColor),
itemonlyrect.Right-1, itemonlyrect.Top,
labelitemrect.Width - itemonlyrect.Width + SystemInformation.SmallIconSize.Width + 1, selecteditemrect.Height + 1);
bool draw = true;
if(PrevVisibleItem != null)
if(PrevVisibleItem.Selected) draw = false;
// Draw upper line if previous item is not selected
if(draw) g.DrawLine(pen, selecteditemrect.Left, selecteditemrect.Top, selecteditemrect.Right, selecteditemrect.Top);
g.DrawLine(pen, selecteditemrect.Left, selecteditemrect.Top, selecteditemrect.Left, selecteditemrect.Bottom);
draw = true;
if(NextVisibleItem != null)
if(NextVisibleItem.Selected) draw = false;
// Draw lower line if net item is not selected
if(draw) g.DrawLine(pen, selecteditemrect.Left, selecteditemrect.Bottom, selecteditemrect.Right, selecteditemrect.Bottom);
g.DrawLine(pen, selecteditemrect.Right, selecteditemrect.Top, selecteditemrect.Right, selecteditemrect.Bottom);
// If FullRowSelect is false and multiselect is enabled, the items don't have the same width
if(!TreeListView.FullRowSelect && NextVisibleItem != null)
if(NextVisibleItem.Selected)
{
int nextItemWidth = NextVisibleItem.GetBounds(TreeListViewItemBoundsPortion.ItemOnly).Width;
if(nextItemWidth != itemonlyrect.Width)
{
g.DrawLine(
pen,
selecteditemrect.Right,
selecteditemrect.Bottom,
selecteditemrect.Right - (itemonlyrect.Width-nextItemWidth),
selecteditemrect.Bottom);
}
}
pen.Dispose();
}
}
g.Dispose();
}
#endregion
#region DrawIntermediateState
internal void DrawIntermediateState()
{
if(!IsInATreeListView) return;
if(TreeListView._updating) return;
Graphics g = Graphics.FromHwnd(TreeListView.Handle);
DrawIntermediateState(g);
g.Dispose();
}
internal void DrawIntermediateState(Graphics g)
{
if(!IsInATreeListView) return;
if(TreeListView._updating) return;
Debug.Assert(!TreeListView.InvokeRequired);
if(TreeListView.CheckBoxes != CheckBoxesTypes.Recursive || TreeListView.Columns.Count == 0) return;
if(CheckStatus == CheckState.Indeterminate)
{
Rectangle rect = GetBounds(ItemBoundsPortion.Icon);
Rectangle r = TreeListView._comctl32Version >= 6 ?
new Rectangle(rect.Left - 14, rect.Top + 5, rect.Height-10, rect.Height-10) :
new Rectangle(rect.Left - 11, rect.Top + 5, rect.Height-10, rect.Height-10);
Brush brush = new Drawing.Drawing2D.LinearGradientBrush(r, Color.Gray, Color.LightBlue, 45, false);
if(TreeListView.Columns[0].Width > (Level + (TreeListView.ShowPlusMinus?2:1)) * SystemInformation.SmallIconSize.Width)
g.FillRectangle(brush, r);
brush.Dispose();
}
}
#endregion
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -