2012-04-26 1 views
1

вот я хочу добавить accountview.xaml в accountlistview.xaml .i попробовать много вариантов, но я не могу этого сделать. здесь accountlistview.xaml содержат сетку и accountview.xaml содержат textbox.the код Fo accountlistview.xamlКак добавить одно окно в другое окно?

<UserControl x:Class="MyBooks.View.accountListView" 
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" 
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" 
xmlns:vw="clr-namespace:MyBooks.View" 
xmlns:uic="clr-namespace:UIControls;assembly=UIControls" 
xmlns:wpftoolkit="http://schemas.microsoft.com/wpf/2008/toolkit"> 

<UserControl.Resources> 
    <ResourceDictionary Source="ViewResources.xaml" /> 
</UserControl.Resources> 

<Grid> 
    <Grid.RowDefinitions> 
     <RowDefinition Height="Auto"/> 
     <RowDefinition Height="*"/> 
    </Grid.RowDefinitions> 

    <Grid.ColumnDefinitions> 
     <ColumnDefinition Width="*"/> 
     <ColumnDefinition Width="Auto"/> 
    </Grid.ColumnDefinitions><wpftoolkit:DataGrid Grid.Row="1" 
         ItemsSource="{Binding Payments}" 
         SelectedItem="{Binding SelectedPayment, Mode=TwoWay}" 
         AutoGenerateColumns="False" 
         SelectionMode="Single" 
         IsReadOnly="True"> 
     <wpftoolkit:DataGrid.Columns> 
      <wpftoolkit:DataGridTextColumn 
       Header="{Resx ResxName=MyBooks.Properties.Strings, Key=Journal_Date_Label}" 
       Binding="{Binding Date}"/> 
      <wpftoolkit:DataGridTextColumn 
       Header="{Resx ResxName=MyBooks.Properties.Strings, Key=Journal_CreditedParty_Label}" 
       Binding="{Binding CreditedAccount.Name}"/> 
      <wpftoolkit:DataGridTextColumn 
       Header="{Resx ResxName=MyBooks.Properties.Strings, Key=Journal_Narration_Label}" 
       Binding="{Binding Narration}"/> 
     </wpftoolkit:DataGrid.Columns> 
    </wpftoolkit:DataGrid> 

как добавить accountview.xaml в этом окне?

+0

Пожалуйста, более конкретно о том, где вы хотите добавить AccountView к. Вы хотите, чтобы это был элемент для контейнера в AccountListView? – EvAlex

ответ

1

просто включить следующую строку в AccountListView.xaml:

<uic:AccountView.xaml />