コード例 #1
0
        private void ButtonSave_Click(object sender, RoutedEventArgs e)
        {
            try
            {
                var converter = new System.Windows.Media.BrushConverter();
                var brush     = (Brush)converter.ConvertFromString("#CACACA");

                string customerName = TextBoxCustomerName.Text.Trim();
                string PhoneNumber  = TextBoxPhoneNumber.Text.Trim();
                if (customerName == string.Empty)
                {
                    BorderCustomerName.BorderBrush = Brushes.Red;
                    return;
                }
                else
                {
                    BorderCustomerName.BorderBrush = brush;
                }
                if (PhoneNumber == string.Empty)
                {
                    BorderPhoneNumber.BorderBrush = Brushes.Red;
                    return;
                }
                else
                {
                    BorderPhoneNumber.BorderBrush = brush;
                }

                _objEntities = new PCApp_TaxitechEntities();
                contact objModel = new contact();
                objModel.Name  = customerName;
                objModel.Phone = PhoneNumber;
                _objEntities.contacts.Add(objModel);
                int Result = _objEntities.SaveChanges();
                if (Result == 1)
                {
                    TextBlockMessage.Text = "Save Successfully";
                }
                else
                {
                    TextBlockMessage.Text = "Error in saving data.";
                }

                TextBoxCustomerName.Text = string.Empty;
                TextBoxPhoneNumber.Text  = string.Empty;
                TextBoxCustomerName.Focus();
            }
            catch (Exception)
            {
                throw;
            }
        }
コード例 #2
0
        private void ButtonReset_Click(object sender, RoutedEventArgs e)
        {
            try
            {
                TextBoxCustomerName.Text = string.Empty;
                TextBoxPhoneNumber.Text  = string.Empty;
                Style style     = this.FindResource("BCTextBoxBorder") as Style;
                var   converter = new System.Windows.Media.BrushConverter();
                var   brush     = (Brush)converter.ConvertFromString("#CACACA");

                BorderPhoneNumber.BorderBrush  = brush;
                BorderCustomerName.BorderBrush = brush;
                TextBlockMessage.Text          = string.Empty;
                TextBoxCustomerName.Focus();
            }
            catch (Exception)
            {
                throw;
            }
        }