コード例 #1
0
ファイル: UrlSets.xaml.cs プロジェクト: clavalle/OCTGN
 private void SaveConfigurationClick(object sender, RoutedEventArgs e)
 {
     if (game.GetXmlByLink(urlBox.Text) != null)
     {
         MessageBox.Show("Duplicated xmls - not allowed.");
         return;
     }
     game.AddXml(urlBox.Text);
     this.Close();
 }