mirror of
https://gitee.com/csharpui/CPF.git
synced 2025-04-04 23:39:26 +08:00
147 lines
5.8 KiB
C#
147 lines
5.8 KiB
C#
using CPF;
|
|
using CPF.Animation;
|
|
using CPF.Controls;
|
|
using CPF.Drawing;
|
|
using CPF.Shapes;
|
|
using CPF.Styling;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace ConsoleApp1
|
|
{
|
|
[CPF.Design.DesignerLoadStyle("res://ConsoleApp1/Stylesheet1.css")]//用于设计的时候加载样式
|
|
public class TreeViewNavItem : TreeViewItem
|
|
{
|
|
protected override void InitializeComponent()
|
|
{
|
|
if (!string.IsNullOrWhiteSpace(DisplayMemberPath))
|
|
{
|
|
_ = this[nameof(Header)] <= DisplayMemberPath;
|
|
}
|
|
if (!string.IsNullOrWhiteSpace(ItemsMemberPath))
|
|
{
|
|
_ = this[nameof(Items)] <= ItemsMemberPath;
|
|
}
|
|
if (IsRootInDesignMode)
|
|
{
|
|
Width = 100;
|
|
Height = 40;
|
|
}
|
|
else
|
|
{
|
|
Width = "100%";
|
|
}
|
|
var panel = ItemsPanel.CreateElement();
|
|
panel.Name = "itemsPanel";
|
|
panel.PresenterFor = this;
|
|
panel.MarginLeft = 0;//子节点偏移
|
|
panel.MarginRight = 0;
|
|
panel[nameof(Visibility)] = (this, nameof(IsExpanded), a => (bool)a ? Visibility.Visible : Visibility.Collapsed);
|
|
Children.Add(new StackPanel
|
|
{
|
|
MarginLeft = 0,
|
|
Orientation = Orientation.Vertical,
|
|
Width = "100%",
|
|
Height = "100%",
|
|
Children =
|
|
{
|
|
new Panel
|
|
{
|
|
Name="treeViewItem",
|
|
PresenterFor=this,
|
|
Width="100%",
|
|
Height=40,
|
|
BorderType = BorderType.BorderThickness,
|
|
BorderThickness = new Thickness(0, 0, 0, 1),
|
|
BorderFill = "#eee",
|
|
Children =
|
|
{
|
|
new ContentControl
|
|
{
|
|
MarginLeft=5,
|
|
Bindings=
|
|
{
|
|
{
|
|
nameof(ContentControl.Content),
|
|
nameof(TreeViewItem.Header),
|
|
this
|
|
},
|
|
{
|
|
nameof(ContentControl.ContentTemplate),
|
|
nameof(TreeViewItem.HeaderTemplate),
|
|
this
|
|
}
|
|
}
|
|
},
|
|
new Panel
|
|
{
|
|
Width=12,
|
|
MarginRight=10,
|
|
Children =
|
|
{
|
|
new Polygon
|
|
{
|
|
IsAntiAlias=true,
|
|
RenderTransformOrigin=new PointField("30%","70%"),
|
|
Points=
|
|
{
|
|
new Point(2,2),
|
|
new Point(2,10),
|
|
new Point(6,6),
|
|
},
|
|
Bindings=
|
|
{
|
|
{
|
|
nameof(Polygon.RenderTransform),
|
|
nameof(IsExpanded),
|
|
this,
|
|
BindingMode.OneWay,
|
|
a=>(bool)a?new RotateTransform(45):Transform.Identity
|
|
},
|
|
}
|
|
}
|
|
},
|
|
Bindings =
|
|
{
|
|
{
|
|
nameof(Visibility),
|
|
nameof(HasItems),
|
|
this,
|
|
BindingMode.OneWay,
|
|
a=>(bool)a?Visibility.Visible:Visibility.Collapsed
|
|
}
|
|
}
|
|
},
|
|
},
|
|
Commands=
|
|
{
|
|
{
|
|
nameof(MouseDown),
|
|
(s,e)=>{
|
|
IsExpanded=!IsExpanded;
|
|
if (!HasItems)
|
|
{
|
|
SingleSelect();
|
|
}
|
|
}
|
|
}
|
|
},
|
|
Triggers=
|
|
{
|
|
{
|
|
nameof(IsMouseOver),
|
|
Relation.Me,
|
|
null,
|
|
(nameof(Background),"232,242,252")
|
|
},
|
|
},
|
|
},
|
|
panel,
|
|
},
|
|
});
|
|
this.Triggers.Add(nameof(IsSelected), Relation.Me.Find(a => a.Name == "treeViewItem" && a.PresenterFor == this), null, (nameof(Background), "203,233,246"));
|
|
}
|
|
}
|
|
}
|