コード例 #1
0
        private void Fill()
        {
            CWCarBrandsLogic units = new CWCarBrandsLogic(manager);

            if (mode == "edit")
            {
                CWCarBrand unit = units.Get(Convert.ToInt32(id));
                if (unit != null)
                {
                    NameTB.Text           = unit.Name;
                    BrandImagePB.SizeMode = PictureBoxSizeMode.Zoom;
                    _image             = Helpers.ImageOperations.ByteArrayToImage(unit.Image);
                    image              = unit.Image;
                    BrandImagePB.Image = _image;
                }
            }
        }
コード例 #2
0
        /// <summary>
        /// вказуємо модель автомобіля
        /// </summary>
        /// <param name="sender"></param>
        /// <param name="e"></param>
        private void SetModelBt_Click(object sender, EventArgs e)
        {
            Cars.ChooseModel form = new Cars.ChooseModel();
            form.WindowState = FormWindowState.Maximized;
            form.ShowDialog();
            modelId = form.SelectedModelID;
            brandId = form.SelectedBrandId;


            if (modelId != null)
            {
                CWCarModelsLogic modelsLogic = new CWCarModelsLogic(manager);
                CWCarModel       model       = modelsLogic.Get(Convert.ToInt32(modelId));
                CarModelPB.Image   = Helpers.ImageOperations.ByteArrayToImage(model.Image);
                CarModelNameL.Text = model.Name;

                foreach (object category in CarCategoriesCB.Items)
                {
                    if (((CWCategory)category).ID == model.CategoryID)
                    {
                        CarCategoriesCB.SelectedItem = category;
                    }
                }

                CarBrandNameL.Text = model.CWCarBrand.Name;
                CarBrandPB.Image   = Helpers.ImageOperations.ByteArrayToImage(model.CWCarBrand.Image);
            }
            else
            {
                if (brandId != null)
                {
                    CWCarBrandsLogic brandsLogic = new CWCarBrandsLogic(manager);
                    CWCarBrand       brand       = brandsLogic.Get(Convert.ToInt32(modelId));
                    CarBrandPB.Image   = Helpers.ImageOperations.ByteArrayToImage(brand.Image);
                    CarBrandNameL.Text = brand.Name;
                }
            }
        }