我有一个“添加客户”用户界面,该用户界面已应用了数据网格以显示所提供的条目,但是如果我在已经显示时重新选择“添加客户”,它将再次添加条目。
第1-3行是原始行,第4-6行是重复行。有谁知道如何限制这种情况的发生?
在我的MainActivity中,我有一个带有框架的菜单导航,以填充xaml页面。下面是初始化类的代码。
private void AddCustomer_Click(object sender, RoutedEventArgs e)
{
Main.Content = new AddCustomerUI();
}
该框架称为Main,然后将xaml页面分配给其Main.content
public partial class AddCustomerUI : Page
{
public AddCustomerUI()
{
InitializeComponent();
SetupCustomer();
customerDataGrid.ItemsSource = App.customers;
}
private void SetupCustomer()
{
var customer = new Customer { FirstName = "Timothy", LastName = "Jennings", Email = "tim.jennings@gmail.com", Phone = "0275 202020",
Address = new Address { Street = "100 Burt Road", Suburb = "Howick", City = "Auckland", Country = "New Zealand" }
};
App.customers.Add(customer);
customer = new Customer { FirstName = "Brian", LastName = "Jones", Email = "bjones@gmail.com", Phone = "0275 903070",
Address = new Address { Street = "100 Vincent Road", Suburb = "St Lukes", City = "Auckland", Country = "New Zealand" }
};
App.customers.Add(customer);
App.customers.Add(new Customer { FirstName = "Terry", LastName = "Teo", Email = "tete@mana.com", Phone = "021 756 382",
Address = new Address { Street = "23 Ford St", City = "Auckland", Suburb = "Pakuranga", Country = "New Zealand" }
});
}
private void SaveCustomer_Click(object sender, RoutedEventArgs e)
{
if (string.IsNullOrWhiteSpace(fNameTxt.Text) || string.IsNullOrWhiteSpace(lNameTxt.Text) || string.IsNullOrWhiteSpace(emailTxt.Text)
|| string.IsNullOrWhiteSpace(phTxt.Text))
//MessageBox.Show("Empty Fields", "Please look at filling out all fields on the form.");
return;
var customer = new Customer
{
FirstName = fNameTxt.Text, LastName = lNameTxt.Text, Email = emailTxt.Text, Phone = phTxt.Text,
Address = new Address { Street = streetTxt.Text, Suburb = suburbTxt.Text, City = cityTxt.Text, Country = countryTxt.Text }
};
App.customers.Add(customer);
customerDataGrid.Items.Refresh();
ResetText();
}
private void ResetText()
{
fNameTxt.Text = string.Empty; lNameTxt.Text = string.Empty;
emailTxt.Text = string.Empty; phTxt.Text = string.Empty;
streetTxt.Text = string.Empty; cityTxt.Text = string.Empty;
suburbTxt.Text = string.Empty; countryTxt.Text = string.Empty;
}
}
答案 0 :(得分:1)
在您的SetupCustomer
类AddCustomerUI
的方法中,在开头添加
App.customers.Clear();
这应该有助于您复制数据。
答案 1 :(得分:1)
SetupCustomer
中存在问题,您没有清除列表,因此您的收藏夹中有多个条目。
private void SetupCustomer()
{
App.customers.Clear();
var customer = new Customer { FirstName = "Timothy", LastName = "Jennings", Email = "tim.jennings@gmail.com", Phone = "0275 202020",
Address = new Address { Street = "100 Burt Road", Suburb = "Howick", City = "Auckland", Country = "New Zealand" }
};
App.customers.Add(customer);
customer = new Customer { FirstName = "Brian", LastName = "Jones", Email = "bjones@gmail.com", Phone = "0275 903070",
Address = new Address { Street = "100 Vincent Road", Suburb = "St Lukes", City = "Auckland", Country = "New Zealand" }
};
App.customers.Add(customer);
App.customers.Add(new Customer { FirstName = "Terry", LastName = "Teo", Email = "tete@mana.com", Phone = "021 756 382",
Address = new Address { Street = "23 Ford St", City = "Auckland", Suburb = "Pakuranga", Country = "New Zealand" }
});
}