1
0
mirror of https://github.com/Ylianst/MeshCentralRouter synced 2026-02-22 04:13:24 +00:00

Improved file selection dialog, item remain selected when control out of focus.

This commit is contained in:
Ylian Saint-Hilaire
2021-07-09 10:23:57 -07:00
parent 81c729ee60
commit 7ce5def535
3 changed files with 208 additions and 237 deletions

View File

@@ -285,6 +285,7 @@ namespace MeshCentralRouter
resources.ApplyResources(this.rightListView, "rightListView");
this.rightListView.FullRowSelect = true;
this.rightListView.HeaderStyle = System.Windows.Forms.ColumnHeaderStyle.Nonclickable;
this.rightListView.HideSelection = false;
this.rightListView.Name = "rightListView";
this.rightListView.SmallImageList = this.fileIconImageList;
this.rightListView.UseCompatibleStateImageBehavior = false;
@@ -382,6 +383,7 @@ namespace MeshCentralRouter
resources.ApplyResources(this.leftListView, "leftListView");
this.leftListView.FullRowSelect = true;
this.leftListView.HeaderStyle = System.Windows.Forms.ColumnHeaderStyle.Nonclickable;
this.leftListView.HideSelection = false;
this.leftListView.Name = "leftListView";
this.leftListView.SmallImageList = this.fileIconImageList;
this.leftListView.UseCompatibleStateImageBehavior = false;