5

NodeViewオブジェクトを使用して、次のようにユーザーにデータを出力します(Gtk#チュートリアル):

    [Gtk.TreeNode (ListOnly=true)]
    public class MyTreeNode : Gtk.TreeNode {

            string song_title;

            public MyTreeNode (string artist, string song_title)
            {
                    Artist = artist;
                    this.song_title = song_title; 
            }

            [Gtk.TreeNodeValue (Column=0)]
            public string Artist;

            [Gtk.TreeNodeValue (Column=1)]
            public string SongTitle {get { return song_title; } }
    }

Gtk.NodeStore store;
    Gtk.NodeStore Store 
    {
        get {
                if (store == null)
                {
                    store = new Gtk.NodeStore (typeof(MyTreeNode));
                    store.AddNode (new MyTreeNode ("The Beatles", "Yesterday"));
                    store.AddNode (new MyTreeNode ("Peter Gabriel", "In Your Eyes"));
                    store.AddNode (new MyTreeNode ("Rush", "Fly By Night"));
                }
            return store;
            }
    }

protected void OnButton1Clicked (object sender, EventArgs e)
{
    // Create a column with title Artist and bind its renderer to model column 0
    nodeview1.AppendColumn ("Artist", new Gtk.CellRendererText (), "text", 0);

    // Create a column with title 'Song Title' and bind its renderer to model column 1
    nodeview1.AppendColumn ("Song Title", new Gtk.CellRendererText (), "text", 1);
        nodeview1.ShowAll ();

    nodeview1.NodeStore=Store;

}

しかし、NodeViewの一部の行(「ビートルズ」-「昨日」など)に色を付けるにはどうすればよいですか?NodeViewスタイルのBackgrounds、BaseColors、Foregroundsなどを変更して試しましたが、機能しません。

編集:私はちょうどこの方法で列の色を変更できることに気づきました:

protected void OnButton1Clicked (object sender, EventArgs e)
{
    // Create a column with title Artist and bind its renderer to model column 0
    nodeview1.AppendColumn ("Artist", new Gtk.CellRendererText (), "text", 0);



    // Create a column with title 'Song Title' and bind its renderer to model column 1
    nodeview1.AppendColumn ("Song Title", new Gtk.CellRendererText (), "text", 1);
        nodeview1.ShowAll ();

    nodeview1.NodeStore=Store;
    nodeview1.Columns[0].Cells[0].CellBackgroundGdk=new Gdk.Color(0,255,0);
}

しかし、どうすれば特定のセルの色を変更できますか?

4

1 に答える 1

2

行ごとにレンダリング属性を変更するには、2 つの方法があります

  1. モデルで属性を定義し、セル レンダラーを作成するときにそれらを参照します。また
  2. 独自TreeCellDataFuncに作成し、それをセル レンダラーにバインドして、レンダリングの前にその属性を確実に変更してください。

オプション 1 は高速ですが、静的に定義された値に制限されます。2 は、レンダリングが複数の変数に依存し、何らかのロジックが含まれている場合に適しています。1 の方法を示し、2 についてはMono のドキュメントを参照します。

前景色を変更したい場合は、モデルに新しい列を追加するだけです:

[Gtk.TreeNode (ListOnly=true)]
public class MyTreeNode : Gtk.TreeNode 
{
    public MyTreeNode (string artist, string title, string color)
    {
        Artist = artist;
        Title = title; 
        Color = color;
    }

    [Gtk.TreeNodeValue (Column=0)]
    public string Artist;

    [Gtk.TreeNodeValue (Column=1)]
    public string Title;

    [Gtk.TreeNodeValue (Column=2)]
    public string Color;
}

「red」や「#ff0000」などの有効な Gdk カラー表現を行コンストラクターに渡します。

store.AddNode(new MyTreeNode("The Beatles", "Yesterday", "red"));
store.AddNode(new MyTreeNode("Peter Gabriel", "In Your Eyes", "black"));

次に、ビューを作成するときに、そのモデル列 (2) をセル レンダラーの「前景」プロパティにバインドするだけです。

nodeview1.AppendColumn("Artist", new Gtk.CellRendererText(), 
                       "text", 0, "foreground", 2);

nodeview1.AppendColumn("Song Title", new Gtk.CellRendererText(),
                       "text", 1, "foreground", 2);

それで全部です。

于 2013-02-15T10:39:26.967 に答える