-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMainWindow.xaml
39 lines (37 loc) · 1.57 KB
/
MainWindow.xaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
<Window
x:Class="Dashboard_UnderlyingDataWPF.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:dxdash="http://schemas.devexpress.com/winfx/2008/xaml/dashboard"
xmlns:dxe="http://schemas.devexpress.com/winfx/2008/xaml/editors"
xmlns:dxg="http://schemas.devexpress.com/winfx/2008/xaml/grid"
xmlns:local="clr-namespace:Dashboard_UnderlyingDataWPF"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
Width="800"
Height="600"
mc:Ignorable="d"
Title="MainWindow">
<Grid>
<dxdash:DashboardControl
MinHeight="150"
DashboardItemMouseEnter="DashboardControl_DashboardItemMouseEnter"
DashboardItemMouseLeave="DashboardControl_DashboardItemMouseLeave"
DashboardItemMouseMove="DashboardControl_DashboardItemMouseMove"
DashboardSource="{x:Type local:SalesDashboard}" />
<Popup x:Name="tooltip" AllowsTransparency="True">
<Border
Background="White"
BorderBrush="Black"
BorderThickness="1"
CornerRadius="9"
Padding="5">
<dxg:GridControl
x:Name="myGrid"
Height="300"
AutoGenerateColumns="AddNew"
EnableSmartColumnsGeneration="True" />
</Border>
</Popup>
</Grid>
</Window>