public SeparatorComponent()
 {
     Line = new LineComponent(2, Color.White);
     DisplayedSize = 2f;
     UseSeparatorColor = true;
     LockToBottom = false;
     Cache = new GraphicsCache();
 }
Example #2
0
 public SeparatorComponent()
 {
     Line              = new LineComponent(2, Color.White);
     DisplayedSize     = 2f;
     UseSeparatorColor = true;
     LockToBottom      = false;
     Cache             = new GraphicsCache();
 }
 public GraphSeparatorComponent(GraphSettings settings)
 {
     Line = new LineComponent(1, Color.White);
     Settings = settings;
     Cache = new GraphicsCache();
 }
Example #4
0
 public ThinSeparatorComponent()
 {
     Line  = new LineComponent(1, Color.White);
     Cache = new GraphicsCache();
 }
 public GraphSeparatorComponent(GraphSettings settings)
 {
     Line     = new LineComponent(1, Color.White);
     Settings = settings;
     Cache    = new GraphicsCache();
 }
 public ThinSeparatorComponent()
 {
     Line = new LineComponent(1, Color.White);
     Cache = new GraphicsCache();
 }
 public HotkeyIndicator()
 {
     Line = new LineComponent(3, Color.White);
     Cache = new GraphicsCache();
     Settings = new HotkeyIndicatorSettings();
 }