0

このウィンドウを C# で定義しています。

<Window x:Class="VirginOneAccount.AccountInfo"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    Title="Account Information" Height="362" Width="614" Loaded="Window_Loaded">
<Window.Resources>
    <DataTemplate x:Key="AccountTemplate">
        <StackPanel Orientation="Horizontal">
            <TextBlock Text="{Binding Path=AccountName}"/>
        </StackPanel>
    </DataTemplate>
</Window.Resources>
<Grid>
    <Grid.ColumnDefinitions>
        <ColumnDefinition Width="418*" />
        <ColumnDefinition Width="174*" />
    </Grid.ColumnDefinitions>
    <ComboBox Height="23" HorizontalAlignment="Stretch" Margin="40,16,42,0" Name="AccountsList" VerticalAlignment="Top" Width="Auto" IsSynchronizedWithCurrentItem="True"
      ItemsSource="{Binding}" ItemTemplate="{StaticResource AccountTemplate}" AllowDrop="False" DataContext="{Binding}" IsEnabled="True" SelectionChanged="AccountsList_SelectionChanged" />
    <Button Content="Save Changes" Height="23" HorizontalAlignment="Left" Margin="40,0,0,10" Name="saveChanges" VerticalAlignment="Bottom" Width="90" IsEnabled="False" Click="saveChanges_Click" />
</Grid>

次に、メイン フォームShow()で、ウィンドウのインスタンスを呼び出します。

AccountInfo Accounts = new AccountInfo();
Accounts.Show();

しかし、私が見るのは空のウィンドウだけです (適切なサイズでさえありません)。ウィンドウが開かないはなぜですか?

4

2 に答える 2

1

私は単純なウィンドウを作成しましたが、これでうまくいきました。テキストボックスだけにして、それが機能するかどうかを確認してください。

public MainWindow()
{   
    InitializeComponent();

    Window1 win1 = new Window1();
    win1.Show();            
}
于 2012-08-03T19:45:54.477 に答える