-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathWindow1.xaml
17 lines (17 loc) · 924 Bytes
/
Window1.xaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<Window x:Class="VirtualGrid.Window1"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:Interactivity="clr-namespace:System.Windows.Interactivity;assembly=System.Windows.Interactivity"
xmlns:syncfusion="http://schemas.syncfusion.com/wpf"
xmlns:virtualgrid="clr-namespace:VirtualGrid"
Icon="App.ico"
>
<Grid>
<Grid.RowDefinitions>
<RowDefinition/>
</Grid.RowDefinitions>
<ScrollViewer CanContentScroll="True" HorizontalScrollBarVisibility="Auto" VerticalScrollBarVisibility="Auto">
<virtualgrid:ExcelGrid x:Name="grid" syncfusion:GridTooltipService.ShowTooltips="True"/>
</ScrollViewer>
</Grid>
</Window>