~halega/+junk/sharpdevelop

« back to all changes in this revision

Viewing changes to src/AddIns/DisplayBindings/Data/ICSharpCode.Data.DemoApp/MainWindow.xaml

  • Committer: sk
  • Date: 2011-09-10 05:17:57 UTC
  • Revision ID: halega@halega.com-20110910051757-qfouz1llya9m6boy
4.1.0.7915 Release Candidate 1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<Window x:Class="ICSharpCode.Data.DemoApp.MainWindow"
 
2
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
 
3
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
 
4
        Title="Data Demo App" Height="800" Width="600"
 
5
        xmlns:data="http://icsharpcode.net/data">
 
6
    <Grid>
 
7
        <Grid.RowDefinitions>
 
8
            <RowDefinition Height="Auto" />
 
9
            <RowDefinition />
 
10
        </Grid.RowDefinitions>
 
11
        
 
12
        <StackPanel>
 
13
            <Button Click="btnCreateNewEDM_Click">Create EDM</Button>
 
14
        </StackPanel>
 
15
        <data:DatabasesTreeView Grid.Row="1" />
 
16
    </Grid>
 
17
</Window>