Fixed Issue 387. The new implementation does not try to start a ring 0 driver that already exists, but could not be opened. It tries to delete the driver and install it new. The driver is now stored temporarily in the application folder. The driver is not correctly removed on system shutdown.
2 using System.Collections.Generic;
5 namespace Aga.Controls.Tree
7 public enum DrawSelectionMode
9 None, Active, Inactive, FullRowSelect
12 public enum TreeSelectionMode
14 Single, Multi, MultiSameParent
17 public enum NodePosition
22 public enum VerticalAlignment
27 public enum IncrementalSearchMode
29 None, Standard, Continuous
33 public enum GridLineStyle
38 HorizontalAndVertical = 3
41 public enum ImageScaleMode
48 /// Scales image to fit the display rectangle, aspect ratio is not fixed.
52 /// Scales image down if it is larger than display rectangle, taking aspect ratio into account
56 /// Scales image up if it is smaller than display rectangle, taking aspect ratio into account
60 /// Scales image to match the display rectangle, taking aspect ratio into account