DynamicSpreadsheet.xaml 1.0 KB

12345678910111213141516171819
  1. <Syncfusion:RibbonWindow x:Class="InABox.DynamicGrid.DynamicSpreadsheet"
  2. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4. xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  5. xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  6. xmlns:local="clr-namespace:InABox.DynamicGrid"
  7. xmlns:Syncfusion="http://schemas.syncfusion.com/wpf"
  8. Syncfusion:SkinStorage.VisualStyle="Office2013"
  9. mc:Ignorable="d"
  10. Title="DynamicSpreadsheet" Height="450" Width="800">
  11. <Grid>
  12. <Grid.RowDefinitions>
  13. <RowDefinition Height="0"/>
  14. <RowDefinition Height="*"/>
  15. </Grid.RowDefinitions>
  16. <Syncfusion:SfSpreadsheetRibbon Grid.Row="0" DataContext= "{Binding ElementName=Spreadsheet}" />
  17. <Syncfusion:SfSpreadsheet x:Name="Spreadsheet" Grid.Row="1" FormulaBarVisibility="Collapsed" />
  18. </Grid>
  19. </Syncfusion:RibbonWindow>