blob: 6d4f6dfdfa62238551d7e7a3697a528d601aab33 (
plain)
| ofs | hex dump | ascii |
|---|
| 0000 | 50 4b 03 04 0a 00 00 00 08 00 4f 4f fd 4c 3a be 4b a0 46 08 00 00 2a 1f 00 00 20 00 00 00 54 61 | PK........OO.L:.K.F...*.......Ta |
| 0020 | 6e 67 6f 2e 50 50 43 2e 53 79 6e 63 68 72 6f 6e 69 7a 61 74 69 6f 6e 2e 63 73 70 72 6f 6a d5 59 | ngo.PPC.Synchronization.csproj.Y |
| 0040 | eb 6e db 38 16 fe bf c0 be 83 61 14 e8 14 a8 ee 94 2c cd 38 1e 38 ce 65 82 49 3a 46 9c b4 f3 c3 | .n.8......a......,.8.8.e.I:F.... |
| 0060 | c0 82 22 29 47 5b 49 54 25 2a 8d b7 33 4f b6 3f f6 91 f6 15 f6 50 96 64 c9 76 6c b7 0d 30 58 b4 | ..")G[IT%*..3O.?.....P.d.vl..0X. |
| 0080 | 70 24 f2 f0 5c be 73 e1 21 f5 df 7f ff 67 f8 f3 53 1c f5 1e 59 96 87 3c 39 e9 1b aa de ef b1 84 | p$..\.s.!....g..S...Y..<9....... |
| 00a0 | 70 1a 26 8b 93 7e 21 02 c5 ed ff 3c fa fb df 86 d3 8c ff 93 11 d1 bb e3 3c ca df 37 <UserControl x:Class="Tango.PPC.UI.Dialogs.ScreenLockView"
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:local="clr-namespace:Tango.PPC.UI.Dialogs"
xmlns:touch="clr-namespace:Tango.Touch.Controls;assembly=Tango.Touch"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
mc:Ignorable="d"
Background="{StaticResource TangoPrimaryBackgroundBrush}" d:DesignHeight="555" d:DesignWidth="560" Width="600" Height="250" d:DataContext="{d:DesignInstance Type=local:ScreenLockViewVM, IsDesignTimeCreatable=False}">
<UserControl.InputBindings>
<KeyBinding Key="Return" Command="{Binding OKCommand}"></KeyBinding>
</UserControl.InputBindings>
<Grid Margin="10">
<DockPanel>
<StackPanel DockPanel.Dock="Bottom" HorizontalAlignment="Right" Orientation="Horizontal">
<touch:TouchButton Command="{Binding CloseCommand}" Style="{StaticResource TangoMessageBoxButton}" DockPanel.Dock="Right" Width="120" Height="50" VerticalAlignment="Bottom">CANCEL</touch:TouchButton>
<touch:TouchButton Command="{Binding OKCommand}" Style="{StaticResource TangoMessageBoxButton}" DockPanel.Dock="Right" Width="120" Height="50" VerticalAlignment="Bottom">OK</touch:TouchButton>
</StackPanel>
<DockPanel>
<touch:TouchIcon Foreground="{StaticResource TangoErrorBrush}" Icon="Lock" VerticalAlignment="Top" Height="65"></touch:TouchIcon>
<StackPanel Margin="20 0 0 0">
<TextBlock FontSize="{StaticResource TangoHeaderFontSize}">Screen Locked</TextBlock>
<TextBlock Margin="0 10 0 0" TextWrapping="Wrap">Please enter the password to unlock the screen.</TextBlock>
<touch:TouchTextBox x:Name="txtPassword" Margin="0 30 40 0" IsPassword="True" KeyboardAction="Go" Text="{Binding Password,Mode=TwoWay,UpdateSourceTrigger=PropertyChanged}" />
</StackPanel>
</DockPanel>
</DockPanel>
</Grid>
</UserControl>
|