|
|
|
@ -434,7 +434,7 @@ namespace ICSharpCode.AvalonEdit |
|
|
|
bool highlightCurrentLine = false; |
|
|
|
bool highlightCurrentLine = false; |
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// <summary>
|
|
|
|
/// Gets/Sets whether current line should be shown.
|
|
|
|
/// Gets/Sets if current line should be shown.
|
|
|
|
/// </summary>
|
|
|
|
/// </summary>
|
|
|
|
[DefaultValue(false)] |
|
|
|
[DefaultValue(false)] |
|
|
|
public virtual bool HighlightCurrentLine { |
|
|
|
public virtual bool HighlightCurrentLine { |
|
|
|
@ -446,5 +446,21 @@ namespace ICSharpCode.AvalonEdit |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
bool hideCursorWhileTyping = true; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
[DefaultValue(true)] |
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
|
|
/// Gets/Sets if mouse cursor should be shown when user is typing
|
|
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
|
|
public bool HideCursorWhileTyping { |
|
|
|
|
|
|
|
get { return hideCursorWhileTyping; } |
|
|
|
|
|
|
|
set { |
|
|
|
|
|
|
|
if (hideCursorWhileTyping != value) { |
|
|
|
|
|
|
|
hideCursorWhileTyping = value; |
|
|
|
|
|
|
|
OnPropertyChanged("HideCursorWhileTyping"); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|