4

F#を介してGtk#ウィジェットを使用してディレクトリ構造を表示したいのですが、TreeViewをF#に変換する方法を理解するのに苦労しています。次のようなディレクトリ構造があったとします。

Directory1
  SubDirectory1
  SubDirectory2
    SubSubDirectory1
  SubDirectory3
Directory2

F#を使用してGtk#ウィジェットでこのツリー構造をどのように表示しますか?

編集:

gradbotは、いくつかの例外を除いて、私が望んでいた答えでした。ListStoreを使用する場合、代わりに以下を使用すると、レベルを拡張する機能が失われます。

let musicListStore = new Gtk.TreeStore([|typeof<String>; typeof<String>|])

拡張可能なレベルのレイアウトが得られます。ただし、これを行うとAppendValuesの呼び出しが中断されるため、コンパイラがどのオーバーロードされたメソッドを使用するかを判断するための手がかりを追加する必要があります。

musicListStore.AppendValues (iter, [|"Fannypack" ; "Nu Nu (Yeah Yeah) (double j and haze radio edit)"|])

列は明示的に配列として渡されることに注意してください。

最後に、Append Valuesによって返されるListIterを使用して、レベルをさらにネストできます。

let iter = musicListStore.AppendValues ("Dance")
let subiter = musicListStore.AppendValues (iter, [|"Fannypack" ; "Nu Nu (Yeah Yeah) (double j and haze radio edit)"|])
musicListStore.AppendValues (subiter, [|"Some Dude"; "Some Song"|]) |> ignore
4

1 に答える 1

5

あなたが何を探しているのか正確にはわかりませんが、ここに彼らのチュートリアルからの翻訳された例があります。それはあなたが始めるのを助けるかもしれません。チュートリアルサイトから取得した画像。

代替テキスト
iterマルチレベルのツリービューの鍵は、この行の 値に値を追加することだと思いますmusicListStore.AppendValues (iter, "Fannypack", "Nu Nu (Yeah Yeah) (double j and haze radio edit)") |> ignore

// you will need to add these references gtk-sharp, gtk-sharp, glib-sharp 
// and set the projects running directory to 
// C:\Program Files (x86)\GtkSharp\2.12\bin\

module SOQuestion

open Gtk
open System

let main() =
    Gtk.Application.Init()

    // Create a Window
    let window = new Gtk.Window("TreeView Example")
    window.SetSizeRequest(500, 200)

    // Create our TreeView
    let tree = new Gtk.TreeView()
    // Add our tree to the window
    window.Add(tree)

    // Create a column for the artist name
    let artistColumn = new Gtk.TreeViewColumn()
    artistColumn.Title <- "Artist"

    // Create the text cell that will display the artist name
    let artistNameCell = new Gtk.CellRendererText()
    // Add the cell to the column
    artistColumn.PackStart(artistNameCell, true)

    // Create a column for the song title
    let songColumn = new Gtk.TreeViewColumn()
    songColumn.Title <- "Song Title"

    // Do the same for the song title column
    let songTitleCell = new Gtk.CellRendererText()
    songColumn.PackStart(songTitleCell, true)

    // Add the columns to the TreeView
    tree.AppendColumn(artistColumn) |> ignore
    tree.AppendColumn(songColumn) |> ignore

    // Tell the Cell Renderers which items in the model to display
    artistColumn.AddAttribute(artistNameCell, "text", 0)
    songColumn.AddAttribute(songTitleCell, "text", 1)

    let musicListStore = new Gtk.ListStore([|typeof<String>; typeof<String>|])

    let iter = musicListStore.AppendValues ("Dance")
    musicListStore.AppendValues (iter, "Fannypack", "Nu Nu (Yeah Yeah) (double j and haze radio edit)") |> ignore

    let iter = musicListStore.AppendValues ("Hip-hop")
    musicListStore.AppendValues (iter, "Nelly", "Country Grammer") |> ignore

    // Assign the model to the TreeView
    tree.Model <- musicListStore

    // Show the window and everything on it
    window.ShowAll()

    // add event handler so Gtk will exit
    window.DeleteEvent.Add(fun _ -> Gtk.Application.Quit())

    Gtk.Application.Run()

[<STAThread>]
main()
于 2010-03-16T04:13:09.000 に答える