Commit ca2470a7 authored by JoyJ's avatar JoyJ

enable column selection

parent b0eeb519
...@@ -22,9 +22,15 @@ public FastColoredTextBoxEx() : base() ...@@ -22,9 +22,15 @@ public FastColoredTextBoxEx() : base()
this.ToolTipDelay = 1; this.ToolTipDelay = 1;
this.DelayedEventsInterval = 1; this.DelayedEventsInterval = 1;
this.DelayedTextChangedInterval = 1; this.DelayedTextChangedInterval = 1;
this.Selection.ColumnSelectionMode = true;
this.InitializeComponent(); this.InitializeComponent();
} }
public override void OnTextChanged()
{
}
public new event EventHandler<ToolTipNeededEventArgs> ToolTipNeeded; public new event EventHandler<ToolTipNeededEventArgs> ToolTipNeeded;
protected override void OnMouseMove(MouseEventArgs e) protected override void OnMouseMove(MouseEventArgs e)
{ {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment