在MainWindow.xaml.cs中我想打開另一個窗口。我的代碼是這樣的:C#通過單擊另一個窗口的按鈕打開一個窗口
WordToHtml.Window1 newForm = new WordToHtml.Window1();
newForm.Show();
return newForm.imagePath;
在Window1.xaml我有標籤,按鈕和文本框。我希望用戶點擊按鈕,然後從文本框中讀取內容。但是,當斷點指向newForm.Show()時,Window1將顯示但不可見。它沒有標籤/按鈕等。這是Window1的代碼:
string imagePath;
public Window1() {
InitializeComponent();
label1.Content = @"Please enter path";
}
void button1_Click(object sender, RoutedEventArgs e) {
//this is never entered because I can't see the button
}
public string newImagePath(string imagePath) {
return imagePath;
}
你在哪裏插入斷點?嘗試在button_click中插入它。 – Muse
當我知道它不會被擊中時,爲什麼我會在button_click中插入斷點。我看不到按鈕,所以我不能點擊它。 –
你可以發佈你的XAML嗎?所以如果我理解正確,一個新的窗口實際上是打開的,但它沒有任何內容? – Peter