コード例 #1
0
ファイル: FormCarListClient.cs プロジェクト: TGrigor/CarShop
        public FormCarListClient()
        {
            InitializeComponent();
            btnSearch.Image  = Image.FromFile(_filePath);
            _brandController = new BrandController();
            _modelController = new ModelController();
            FormUtils.AddBrandToList(ref comboBoxBrands, ref _brandController);

            FormUtils.AddCarsToListView(lvCarList);
        }
コード例 #2
0
ファイル: FormCarListAdmin.cs プロジェクト: TGrigor/CarShop
 public FormCarListAdmin()
 {
     InitializeComponent();
     FormUtils.AddCarsToListView(lvCarList);
 }