Visual Studio 2012でwp7用のアプリを実行していますが、すでにすべてをコーディングしていますが、デバッグするときに、自動的に実行されるmain.g.csページとapp.g.csページに問題があります。作る。
main.xamlをmain.xaml.csにリンクし、app.xamlをapp.g.csにリンクしていますが、デバッグしようとすると、代わりに「main.g.cs」が使用されます。 「main.xaml.cs」、次のエラーが発生します:
タイプ「X.main」には、「connectionList」の定義がすでに含まれています。C:\ Users ... \ obj \ Debug \ controller \ main.g.cs $
connectionListの定義をmain.xaml.csページに配置しましたが、main.g.csにこの定義があります
public partial class main : Microsoft.Phone.Controls.PhoneApplicationPage {
...
internal System.Windows.Controls.ListBox connectionList;
...
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public void InitializeComponent() {
if (_contentLoaded) {
return;
}
_contentLoaded = true;
System.Windows.Application.LoadComponent(this, new System.Uri(".../main.xaml", System.UriKind.Relative));
this.connectionList = ((System.Windows.Controls.ListBox) (this.FindName("connectionList")));
これを修正するためにさまざまな方法を試しました(main.xamlを削除して再作成し、ビルドアクションを設定します)