mirror of
https://github.com/Ryujinx/GtkSharp.git
synced 2025-01-24 15:40:59 +00:00
c3f768c537
Add syntax highlighting to sample application.
13 lines
243 B
C#
13 lines
243 B
C#
namespace GtkSource
|
|
{
|
|
public partial class SourceView : Gtk.TextView
|
|
{
|
|
new public GtkSource.Buffer Buffer
|
|
{
|
|
get => base.Buffer as GtkSource.Buffer;
|
|
set => base.Buffer = value;
|
|
}
|
|
}
|
|
}
|
|
|