fix bulleted list

svn path=/trunk/gtk-sharp/; revision=16080
This commit is contained in:
John Luke 2003-07-10 03:06:27 +00:00
parent 6f04d85cee
commit d0f1f5ef24

View File

@ -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 ();
}