-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathCalculatorSample.xaml
22 lines (19 loc) · 1.07 KB
/
CalculatorSample.xaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<View:SampleLayout
x:Class="SampleBrowser.Editors.Controls.Calculator.CalculatorSample"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:View="using:Common"
xmlns:local="using:SampleBrowser.Editors.Controls.Calculator"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:Input="using:Syncfusion.UI.Xaml.Controls.Input"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
mc:Ignorable="d"
d:DesignHeight="300"
d:DesignWidth="400">
<View:SampleLayout.Sample>
<ContentControl HorizontalAlignment="Center" VerticalAlignment="Center">
<Viewbox MaxHeight="400" MaxWidth="300" Margin="20">
<Input:SfCalculator x:Name="calculator" HorizontalAlignment="Center" VerticalAlignment="Center" HorizontalContentAlignment="Stretch" BorderThickness="1" BorderBrush="LightGray"/>
</Viewbox>
</ContentControl>
</View:SampleLayout.Sample>
</View:SampleLayout>