| 123456789101112131415161718192021222324252627282930 |
- <UserControl x:Class="MaintainModule.Controls.MontionButton"
- xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
- xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
- xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
- xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
- xmlns:local="clr-namespace:MaintainModule.Controls"
- mc:Ignorable="d"
- x:Name="This"
- d:DesignHeight="450" d:DesignWidth="800">
- <UserControl.Resources>
- <ResourceDictionary >
- <ResourceDictionary.MergedDictionaries>
- <ResourceDictionary Source="/UICommon;component/Resources.xaml"/>
- </ResourceDictionary.MergedDictionaries>
- </ResourceDictionary>
- </UserControl.Resources>
- <Button Style="{StaticResource FunctionButton}" Command="{Binding ElementName=This, Path=OpenCommand}" CommandParameter="{Binding ElementName=This, Path=OpenParameter}" Background="{StaticResource BorderBackgroundColor}" MaxHeight="280" Margin="6">
- <Grid>
- <!--<Grid.RowDefinitions>
- <RowDefinition Height="auto"/>
- <RowDefinition Height="48"/>
- <RowDefinition Height="72"/>
- </Grid.RowDefinitions>-->
- <TextBlock Foreground="Black" FontSize="24" HorizontalAlignment="Center" Text="{Binding ElementName=This, Path=Title}"/>
- <!--<Image Grid.Row="2" Source="/MaintainModule;component/Resources/Loadport.png"/>-->
- </Grid>
- </Button>
- </UserControl>
|