public frmTeatMain() { InitializeComponent(); SRC = new SRCCore.SRC(); SRC.FileSystem = new LocalFileSystem(); }
public void Init(SRC src, ListBoxArgs args) { SRC = src; Text = args.lb_caption; _lstItems.DataSource = args.Items; _lstItems.DisplayMember = "TextWithFlag"; // 先頭に表示するアイテムを設定 if (SRC.GUI.TopItem > 0) { if (_lstItems.TopIndex != SRC.GUI.TopItem - 1) { _lstItems.TopIndex = GeneralLib.MinLng(SRC.GUI.TopItem, _lstItems.Items.Count) - 1; } } }
public Sound(SRC src) { SRC = src; }