Subversion Repositories musikbox

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
2 daniel-mar 1
object ConfigForm: TConfigForm
2
  Left = 189
3
  Top = 117
4
  BorderIcons = [biSystemMenu, biMinimize]
5
  BorderStyle = bsSingle
6
  Caption = 'Konfiguration'
7
  ClientHeight = 313
8
  ClientWidth = 361
9
  Color = clBtnFace
10
  Font.Charset = DEFAULT_CHARSET
11
  Font.Color = clWindowText
12
  Font.Height = -11
13
  Font.Name = 'MS Sans Serif'
14
  Font.Style = []
15
  OldCreateOrder = False
16
  Position = poMainFormCenter
17
  OnShow = FormShow
18
  PixelsPerInch = 96
19
  TextHeight = 13
20
  object btnAbbrechen: TButton
21
    Left = 8
22
    Top = 280
23
    Width = 113
24
    Height = 25
25
    Cancel = True
26
    Caption = 'Abbrechen'
27
    TabOrder = 0
28
    OnClick = btnAbbrechenClick
29
  end
30
  object btnSpeichern: TButton
31
    Left = 240
32
    Top = 280
33
    Width = 113
34
    Height = 25
35
    Caption = 'Speichern'
36
    Default = True
37
    TabOrder = 1
38
    OnClick = btnSpeichernClick
39
  end
40
  object grpMusikOrdner: TGroupBox
41
    Left = 8
42
    Top = 8
43
    Width = 345
44
    Height = 257
45
    Caption = 'Musikordner'
46
    TabOrder = 2
47
    object lstMusikOrdner: TListBox
48
      Left = 16
49
      Top = 24
50
      Width = 201
51
      Height = 209
52
      ItemHeight = 13
53
      TabOrder = 0
54
    end
55
    object btnOrdnerErstellen: TButton
56
      Left = 232
57
      Top = 24
58
      Width = 97
59
      Height = 25
60
      Caption = 'Neuer Ordner'
61
      TabOrder = 1
62
      OnClick = btnOrdnerErstellenClick
63
    end
64
    object btnOrdnerEntfernen: TButton
65
      Left = 230
66
      Top = 56
67
      Width = 99
68
      Height = 25
69
      Caption = 'Entfernen'
70
      TabOrder = 2
71
      OnClick = btnOrdnerEntfernenClick
72
    end
73
  end
74
end