コード例 #1
0
 public SeparatorComponent()
 {
     Line = new LineComponent(2, Color.White);
     DisplayedSize = 2f;
     UseSeparatorColor = true;
     LockToBottom = false;
     Cache = new GraphicsCache();
 }
コード例 #2
0
ファイル: SeparatorComponent.cs プロジェクト: stoye/LiveSplit
 public SeparatorComponent()
 {
     Line              = new LineComponent(2, Color.White);
     DisplayedSize     = 2f;
     UseSeparatorColor = true;
     LockToBottom      = false;
     Cache             = new GraphicsCache();
 }
コード例 #3
0
 public GraphSeparatorComponent(GraphSettings settings)
 {
     Line = new LineComponent(1, Color.White);
     Settings = settings;
     Cache = new GraphicsCache();
 }
コード例 #4
0
 public ThinSeparatorComponent()
 {
     Line  = new LineComponent(1, Color.White);
     Cache = new GraphicsCache();
 }
コード例 #5
0
 public GraphSeparatorComponent(GraphSettings settings)
 {
     Line     = new LineComponent(1, Color.White);
     Settings = settings;
     Cache    = new GraphicsCache();
 }
コード例 #6
0
 public ThinSeparatorComponent()
 {
     Line = new LineComponent(1, Color.White);
     Cache = new GraphicsCache();
 }
コード例 #7
0
 public HotkeyIndicator()
 {
     Line = new LineComponent(3, Color.White);
     Cache = new GraphicsCache();
     Settings = new HotkeyIndicatorSettings();
 }