1234567891011121314151617181920212223 |
- <UserControl x:Class="FurnaceUI.Views.Maintenances.ShutdownView"
- 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:FurnaceUI.Views.Maintenances" xmlns:i="http://schemas.microsoft.com/expression/2010/interactivity" xmlns:micro="http://www.caliburn.org"
- mc:Ignorable="d"
- d:DesignHeight="450" d:DesignWidth="800">
- <Grid>
- <Button Width="260" Height="110" Margin="0,0,6,0">
- <Button.Content>
- <TextBlock Text="ShutDown" FontSize="25"></TextBlock>
- </Button.Content>
- <i:Interaction.Triggers>
- <i:EventTrigger EventName="Click">
- <micro:ActionMessage MethodName="ShutDown">
- </micro:ActionMessage>
- </i:EventTrigger>
- </i:Interaction.Triggers>
- </Button>
- </Grid>
- </UserControl>
|