Skip to content

Commit

Permalink
improve sample code
Browse files Browse the repository at this point in the history
  • Loading branch information
robinrodricks committed Jun 25, 2019
1 parent d7934c2 commit 3c77858
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,9 @@ form.Controls.Add(list);


// set basic visual properties
list.Size = new System.Drawing.Size(800, 200);
list.Size = new Size(800, 200);
list.Theme = OLVTheme.VistaExplorer;
list.ItemFont = new System.Drawing.Font("Segoe UI", 9.75F, FontStyle.Regular, GraphicsUnit.Point, 0);
list.ItemFont = new Font("Segoe UI", 9.75F, FontStyle.Regular, GraphicsUnit.Point, 0);


// display the the file name as the list item label
Expand Down

0 comments on commit 3c77858

Please sign in to comment.