Skip to content

Commit

Permalink
Resized bit bang SPI form slightly, made result data not sortable
Browse files Browse the repository at this point in the history
  • Loading branch information
ajn96 committed Jul 31, 2020
1 parent cafbf57 commit 683711b
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 13 deletions.
22 changes: 11 additions & 11 deletions src/BitBangSpiGUI.Designer.vb

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 5 additions & 2 deletions src/BitBangSpiGUI.vb
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,13 @@ Public Class BitBangSpiGUI

result.ColumnCount = 3
result.Columns(0).Name = ("Byte Number")
result.Columns(1).Name = ("MISO Value")
result.Columns(2).Name = ("MOSI Value")
result.Columns(0).SortMode = DataGridViewColumnSortMode.NotSortable
result.Columns(0).AutoSizeMode = DataGridViewAutoSizeColumnMode.DisplayedCells
result.Columns(1).Name = ("MISO Value")
result.Columns(1).SortMode = DataGridViewColumnSortMode.NotSortable
result.Columns(1).AutoSizeMode = DataGridViewAutoSizeColumnMode.DisplayedCells
result.Columns(2).Name = ("MOSI Value")
result.Columns(2).SortMode = DataGridViewColumnSortMode.NotSortable
result.Columns(2).AutoSizeMode = DataGridViewAutoSizeColumnMode.Fill
UpdateParameters()
SetupResultView()
Expand Down

0 comments on commit 683711b

Please sign in to comment.