Merge pull request #1 from Blquinn/source-buffer
Update SourceView to return SourceView.Buffer
This commit is contained in:
commit
e6aed8d93d
2 changed files with 14 additions and 1 deletions
12
Source/Libs/SourceView/SourceView.cs
Normal file
12
Source/Libs/SourceView/SourceView.cs
Normal file
|
@ -0,0 +1,12 @@
|
||||||
|
namespace GtkSource
|
||||||
|
{
|
||||||
|
public partial class SourceView : Gtk.TextView
|
||||||
|
{
|
||||||
|
new public GtkSource.Buffer Buffer
|
||||||
|
{
|
||||||
|
get => base.Buffer as GtkSource.Buffer;
|
||||||
|
set => base.Buffer = value;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
|
@ -59,6 +59,7 @@ namespace Samples
|
||||||
|
|
||||||
_textViewCode = new SourceView();
|
_textViewCode = new SourceView();
|
||||||
_textViewCode.ShowLineNumbers = true;
|
_textViewCode.ShowLineNumbers = true;
|
||||||
|
_textViewCode.Buffer.Language = new LanguageManager().GetLanguage("c-sharp");
|
||||||
|
|
||||||
_textViewCode.Margin = 3;
|
_textViewCode.Margin = 3;
|
||||||
scroll2.Child = _textViewCode;
|
scroll2.Child = _textViewCode;
|
||||||
|
|
Loading…
Reference in a new issue