Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
C#では、何が最初に読み込まれますか?ウィンドウパネルの.xamlファイルのXAMLバインディング、または.xaml.csファイルの背後にあるコードのイベントハンドラー?
.csはそうします。InitializeComponent()これは、コントロールを作成してバインドする呼び出しです。
InitializeComponent()
証拠
public partial class MainWindow : Window { public MainWindow() { MessageBox.Show(string.Empty); InitializeComponent(); } }