* UIBreadcrumb, UICheckBoxGroup, UIRadioButtonGroup: 更改列表项为UIObjectCollection
This commit is contained in:
parent
2c3d294a3d
commit
2fcb9d1f9e
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -37,6 +37,7 @@ namespace Sunny.UI
|
|||||||
{
|
{
|
||||||
public UIBreadcrumb()
|
public UIBreadcrumb()
|
||||||
{
|
{
|
||||||
|
items.CountChange += Items_CountChange;
|
||||||
SetStyleFlags(true, false);
|
SetStyleFlags(true, false);
|
||||||
ShowText = false;
|
ShowText = false;
|
||||||
ShowRect = false;
|
ShowRect = false;
|
||||||
@ -48,23 +49,23 @@ namespace Sunny.UI
|
|||||||
foreColor = Color.White;
|
foreColor = Color.White;
|
||||||
}
|
}
|
||||||
|
|
||||||
~UIBreadcrumb()
|
private void Items_CountChange(object sender, EventArgs e)
|
||||||
{
|
{
|
||||||
listbox.Dispose();
|
Invalidate();
|
||||||
}
|
}
|
||||||
|
|
||||||
public delegate void OnValueChanged(object sender, int value);
|
public delegate void OnValueChanged(object sender, int value);
|
||||||
|
|
||||||
public event OnValueChanged ItemIndexChanged;
|
public event OnValueChanged ItemIndexChanged;
|
||||||
|
|
||||||
private readonly ListBox listbox = new ListBox();
|
|
||||||
|
|
||||||
[DesignerSerializationVisibility(DesignerSerializationVisibility.Content)]
|
[DesignerSerializationVisibility(DesignerSerializationVisibility.Content)]
|
||||||
[Localizable(true)]
|
[Localizable(true)]
|
||||||
[Editor("System.Windows.Forms.Design.ListControlStringCollectionEditor, System.Design, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", typeof(UITypeEditor))]
|
[Editor("System.Windows.Forms.Design.ListControlStringCollectionEditor, System.Design, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", typeof(UITypeEditor))]
|
||||||
[MergableProperty(false)]
|
[MergableProperty(false)]
|
||||||
[Description("列表项"), Category("SunnyUI")]
|
[Description("列表项"), Category("SunnyUI")]
|
||||||
public ListBox.ObjectCollection Items => listbox.Items;
|
public UIObjectCollection Items => items;
|
||||||
|
|
||||||
|
private readonly UIObjectCollection items = new UIObjectCollection();
|
||||||
|
|
||||||
private readonly ConcurrentDictionary<int, Point[]> ClickArea = new ConcurrentDictionary<int, Point[]>();
|
private readonly ConcurrentDictionary<int, Point[]> ClickArea = new ConcurrentDictionary<int, Point[]>();
|
||||||
|
|
||||||
|
@ -97,11 +97,6 @@ namespace Sunny.UI
|
|||||||
|
|
||||||
private readonly UIObjectCollection items = new UIObjectCollection();
|
private readonly UIObjectCollection items = new UIObjectCollection();
|
||||||
|
|
||||||
private void Listbox_OnItemsCountChange(object sender, EventArgs e)
|
|
||||||
{
|
|
||||||
Invalidate();
|
|
||||||
}
|
|
||||||
|
|
||||||
private void CreateBoxes()
|
private void CreateBoxes()
|
||||||
{
|
{
|
||||||
if (Items.Count != boxes.Count)
|
if (Items.Count != boxes.Count)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user