- Restore the selection color after HideCaret

- Only show the pseudo caret if the StepRTB was active for the grid
Add a property to track if the StepRTB was active for a grid
Track if the StepRTB was active for a grid
This commit is contained in:
Rich
2011-02-14 19:00:41 +00:00
parent 4fdc4d4493
commit 5786528a44
3 changed files with 58 additions and 30 deletions

View File

@@ -58,6 +58,12 @@ namespace Volian.Controls.Library
}
#endregion
#region Properties
private bool _RTBLastFocus = true;
public bool RTBLastFocus
{
get { return _RTBLastFocus; }
set { _RTBLastFocus = value; }
}
protected static readonly log4net.ILog _MyLog = log4net.LogManager.GetLogger(System.Reflection.MethodBase.GetCurrentMethod().DeclaringType);
protected ChildRelation _MyChildRelation;
protected bool _Loading = true;