mirror of
https://github.com/Ryujinx/GtkSharp.git
synced 2024-12-23 23:55:26 +00:00
fix bulleted list
svn path=/trunk/gtk-sharp/; revision=16080
This commit is contained in:
parent
6f04d85cee
commit
d0f1f5ef24
|
@ -19,13 +19,21 @@
|
|||
Model/View/Controller design and consists of four major parts:
|
||||
<list type="bullet">
|
||||
<item>
|
||||
<see cref="T:Gtk.TreeView" />, the tree view widget</item>
|
||||
<term>
|
||||
<see cref="T:Gtk.TreeView" />, the tree view widget
|
||||
</term>
|
||||
</item>
|
||||
<item>
|
||||
<see cref="T:Gtk.TreeViewColumn" />, the view column.</item>
|
||||
<item>The cell renderers (<see cref="T:Gtk.CellRenderer" />
|
||||
and others).</item>
|
||||
<term>
|
||||
<see cref="T:Gtk.TreeViewColumn" />, the view column.
|
||||
</term>
|
||||
</item>
|
||||
<item>
|
||||
<see cref="T:Gtk.TreeModel" />, the model interface.</item>
|
||||
<term>The cell renderers (<see cref="T:Gtk.CellRenderer" /> and others).</term>
|
||||
</item>
|
||||
<item>
|
||||
<term><see cref="T:Gtk.TreeModel" />, the model interface.</term>
|
||||
</item>
|
||||
</list></para>
|
||||
<para>
|
||||
The View is composed of the first three, while the last is the
|
||||
|
@ -76,7 +84,7 @@ public class TreeViewSample {
|
|||
tv.AppendColumn ("Data", new CellRendererText (), "text", 1);
|
||||
|
||||
sw.Add (tv);
|
||||
sw.Show();
|
||||
sw.Show ();
|
||||
win.ShowAll ();
|
||||
Application.Run ();
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue