当前位置: 首页>>代码示例>>C#>>正文


C# TextView.ModifyFg方法代码示例

本文整理汇总了C#中Gtk.TextView.ModifyFg方法的典型用法代码示例。如果您正苦于以下问题:C# TextView.ModifyFg方法的具体用法?C# TextView.ModifyFg怎么用?C# TextView.ModifyFg使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Gtk.TextView的用法示例。


在下文中一共展示了TextView.ModifyFg方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。

示例1: MainWindow_Windows

        public MainWindow_Windows()
            : base("Windows")
        {
            SetDefaultSize(300, 250);
            SetPosition(WindowPosition.Center);
            BorderWidth = 15;
            DeleteEvent += delegate
                {
                    if (help != null)
                        help.Clicked -= OnClickedHelpButton;
                    Application.Quit();
                };

            Table table = new Table(8, 4, false);
            table.ColumnSpacing = 3;

            Label title = new Label("Windows");

            Alignment halign = new Alignment(0, 0, 0, 0);
            halign.Add(title);

            table.Attach(halign, 0, 1, 0, 1, AttachOptions.Fill,
                AttachOptions.Fill, 0, 0);

            wins = new TextView();
            wins.ModifyFg(StateType.Normal, new Gdk.Color(20, 20, 20));
            wins.CursorVisible = false;
            table.Attach(wins, 0, 2, 1, 3, AttachOptions.Fill | AttachOptions.Expand,
                AttachOptions.Fill | AttachOptions.Expand, 1, 1);

            Button activate = new Button("Activate");
            activate.SetSizeRequest(50, 30);
            table.Attach(activate, 3, 4, 1, 2, AttachOptions.Fill,
                AttachOptions.Shrink, 1, 1);

            Alignment valign = new Alignment(0, 0, 0, 0);
            Button close = new Button("Close");
            close.SetSizeRequest(70, 30);
            valign.Add(close);
            table.SetRowSpacing(1, 3);
            table.Attach(valign, 3, 4, 2, 3, AttachOptions.Fill,
                AttachOptions.Fill | AttachOptions.Expand, 1, 1);

            Alignment halign2 = new Alignment(0, 1, 0, 0);
            help = new Button("Help");
            help.SetSizeRequest(70, 30);

            help.Clicked += OnClickedHelpButton;

            halign2.Add(help);
            table.SetRowSpacing(3, 6);
            table.Attach(halign2, 0, 1, 4, 5, AttachOptions.Fill,
                AttachOptions.Fill, 0, 0);

            Button ok = new Button("OK");
            ok.SetSizeRequest(70, 30);
            table.Attach(ok, 3, 4, 4, 5, AttachOptions.Fill,
                AttachOptions.Fill, 0, 0);

            Add(table);
            ShowAll();
        }
开发者ID:oraora81,项目名称:NOCmono,代码行数:62,代码来源:MainWindow_Windows.cs


注:本文中的Gtk.TextView.ModifyFg方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。