Exemple #1
0
        // Private functions
        // *****************
        private void DisplayProduct(product p)
        {
            if (p != null)
            {
                ProductIDTextBox.Text = p.productID.ToString();
                ConditionTextBox.Text = p.condition;
                CostTextBox.Text      = "$" + p.cost.ToString();


                // Product Info
                PlatformTextBox.Text     = p.platform;
                OSTextBox.Text           = p.OS;
                ManufacturerTextBox.Text = p.manufacturer;
                ModelTextBox.Text        = p.model;


                // Tech Specs
                MemoryTextBox.Text  = p.RAM_size;
                LCDSizeTextBox.Text = p.screensize;
                HDDTextBox.Text     = p.HDD_size;

                CPUBrandTextBox.Text = p.CPU_brand;
                CPUNumberTexBox.Text = p.CPU_number;
                GPUTypeTextBox.Text  = p.GPU_Type;

                CPUTypeTextBox.Text  = p.CPU_type;
                CPUSpeedTextBox.Text = p.CPU_speed;
                WebcamTextBox.Text   = p.webcam;
                NextButton.Enabled   = true;
            }
            else
            {
                ProductIDTextBox.Clear();
                ConditionTextBox.Clear();
                CostTextBox.Clear();


                // Product Info
                PlatformTextBox.Clear();
                OSTextBox.Clear();
                ManufacturerTextBox.Clear();


                // Tech Specs
                MemoryTextBox.Clear();
                LCDSizeTextBox.Clear();
                HDDTextBox.Clear();

                CPUBrandTextBox.Clear();
                CPUNumberTexBox.Clear();
                GPUTypeTextBox.Clear();

                CPUTypeTextBox.Clear();
                CPUSpeedTextBox.Clear();
                WebcamTextBox.Clear();
                NextButton.Enabled = false;
            }
        }
Exemple #2
0
        private void InsertButton_Click(object sender, RoutedEventArgs e)
        {
            string variable   = VariableComboBox.Text;
            int    caretIndex = ConditionTextBox.CaretIndex;

            ConditionTextBox.Text       = ConditionTextBox.Text.Insert(caretIndex, variable);
            ConditionTextBox.CaretIndex = caretIndex + variable.Length;

            ConditionTextBox.Focus();
        }
Exemple #3
0
 // reset the form;
 private void ResetForm()
 {
     ProductIDTextBox.Clear();
     ConditionTextBox.Clear();
     CostTextBox.Clear();
     PlatformTextBox.Clear();
     OSTextBox.Clear();
     ManufacturerTextBox.Clear();
     ModelTextBox.Clear();
     MemoryTextBox.Clear();
     LCDSizeTextBox.Clear();
     HDDTextBox.Clear();
     CPUBrandTextBox.Clear();
     CPUNumberTextBox.Clear();
     GPUTypeTextBox.Clear();
     CPUTypeTextBox.Clear();
     CPUSpeedTextBox.Clear();
     WebCamTextBox.Clear();
 }
 private void ResetForm()
 {
     ProductTextBox.Clear();
     ConditionTextBox.Clear();
     CostTextBox.Clear();
     PlatFormTextBox.Clear();
     OsTextBox.Clear();
     ManuFacTextBox.Clear();
     ModelTextBox.Clear();
     MemoryTextBox.Clear();
     LCDTextBox.Clear();
     HDDTextBox.Clear();
     CPUBTextBox.Clear();
     CPUNumTextBox.Clear();
     GPUTTextBox.Clear();
     CPUTTextBox.Clear();
     CPUspeedTextBox.Clear();
     WebCamTextBox.Clear();
 }
Exemple #5
0
 private void ConditionTextBox_Loaded(object sender, RoutedEventArgs e)
 {
     ConditionTextBox.Text = DataContext as string;
     ConditionTextBox.Focus();
 }