21 |
How do I specify that an object should be moved not resized
exsplitbar1.ObjectsLT = "Command1"; exsplitbar1.ObjectsRB = "Command1"; |
20 |
I've noticed some margins that are not painted. How can I prevent/remove that
exsplitbar1.BorderWidth = 0; exsplitbar1.BorderHeight = 0; exsplitbar1.SplitBackColor = Color.FromArgb(0,0,0); |
19 |
How can I change the shape of the cursor
|
18 |
How can I display a tooltip when cursor hovers the split bar (pictures)
|
17 |
How can I display a tooltip when cursor hovers the split bar (images)
|
16 |
Is it possible to move the associated objects once the user drags the split bar, not just when it ends
|
15 |
How do I know what events your control supports
|
14 |
Is it possible to get notified once the user moves the split bar
// Drag event - Notifies that the user drags the split bar. private void exsplitbar1_Drag(object sender,int Position) { System.Diagnostics.Debug.Print( "New Position" ); System.Diagnostics.Debug.Print( Position.ToString() ); } //this.exsplitbar1.Drag += new exontrol.EXSPLITBARLib.exg2antt.DragEventHandler(this.exsplitbar1_Drag); |
13 |
How do I get notified once the user drop the split bar to a new position
// DragEnd event - Occurs once the user ends dragging the split bar. private void exsplitbar1_DragEnd(object sender,int Position,bool Cancel) { System.Diagnostics.Debug.Print( "New Position" ); System.Diagnostics.Debug.Print( Position.ToString() ); } //this.exsplitbar1.DragEnd += new exontrol.EXSPLITBARLib.exg2antt.DragEndEventHandler(this.exsplitbar1_DragEnd); |
12 |
How do I programmatically move the split bar, to the right/bottom most position
exsplitbar1.ObjectsLT = "Command1"; exsplitbar1.ObjectsRB = "Command2"; exsplitbar1.MoveTo(exsplitbar1.Max); |
11 |
How do I programmatically move the split bar, to the left/top most position
exsplitbar1.ObjectsLT = "Command1"; exsplitbar1.ObjectsRB = "Command2"; exsplitbar1.MoveTo(exsplitbar1.Min); |
10 |
How do I programmatically move the split bar
|
9 |
I've noticed that the objects are hidden, when the split bar is closed to the limit. Is it possible to prevent that
// Show event - Occurs when an object requires to be shown or hidden. private void exsplitbar1_Show(object sender,object Obj,bool Visible) { System.Diagnostics.Debug.Print( Obj.ToString() ); System.Diagnostics.Debug.Print( Visible.ToString() ); } //this.exsplitbar1.Show += new exontrol.EXSPLITBARLib.exg2antt.ShowEventHandler(this.exsplitbar1_Show); exsplitbar1.ObjectsLT = "Command1"; exsplitbar1.ObjectsRB = "Command2"; exsplitbar1.HideOnLimit = false; |
8 |
How can I specify the limit to move the splitbar (hard coded value)
exsplitbar1.LimitLT = "32D"; exsplitbar1.LimitRB = "32D"; |
7 |
How can I specify the limit to move the splitbar (percent)
exsplitbar1.LimitLT = "50%"; exsplitbar1.LimitRB = "50%"; |
6 |
How do I change the split bar's visual appearance using your EBN files (BASE64)
|
5 |
How do I change the split bar's visual appearance using your EBN files (file)
|
4 |
How do I specify the objects to be resized to left/top or right/bottom side of the split bar (method runtime)
exsplitbar1.AddObjectLT("Command1"); exsplitbar1.AddObjectRB("Command2"); exsplitbar1.AddObjectRB("SplitBar2"); exsplitbar1.AddObjectRB("Command3"); |
3 |
How do I specify the objects to be resized to left/top or right/bottom side of the split bar (method design)
exsplitbar1.ObjectsLT = "Command1"; exsplitbar1.ObjectsRB = "Command2,SplitBar2,Command3"; exsplitbar1.AddObjectLT("Command1"); exsplitbar1.AddObjectRB("Command2"); exsplitbar1.AddObjectRB("SplitBar2"); exsplitbar1.AddObjectRB("Command3"); |
2 |
How do I change the split bar's color
|
1 |
How do I change the control's background color
|