From d0f1f5ef24650a2e20aba2b23b6bba9432474a2c Mon Sep 17 00:00:00 2001 From: John Luke Date: Thu, 10 Jul 2003 03:06:27 +0000 Subject: [PATCH] fix bulleted list svn path=/trunk/gtk-sharp/; revision=16080 --- doc/en/Gtk/TreeView.xml | 20 ++++++++++++++------ 1 file changed, 14 insertions(+), 6 deletions(-) diff --git a/doc/en/Gtk/TreeView.xml b/doc/en/Gtk/TreeView.xml index ab7ccf5e3..0db78b030 100644 --- a/doc/en/Gtk/TreeView.xml +++ b/doc/en/Gtk/TreeView.xml @@ -19,13 +19,21 @@ Model/View/Controller design and consists of four major parts: - , the tree view widget + + , the tree view widget + + - , the view column. - The cell renderers ( - and others). + + , the view column. + + - , the model interface. + The cell renderers ( and others). + + + , the model interface. + 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 (); }