- Se traslada versión a git desde tfs
This commit is contained in:
BIN
DXSplashScreen/SplashScreenBackground.png
Normal file
BIN
DXSplashScreen/SplashScreenBackground.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 18 KiB |
23
DXSplashScreen/SplashScreenTecnosis.xaml
Normal file
23
DXSplashScreen/SplashScreenTecnosis.xaml
Normal file
@@ -0,0 +1,23 @@
|
||||
<UserControl
|
||||
x:Class="SplashScreenTecnosis"
|
||||
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:dx="http://schemas.devexpress.com/winfx/2008/xaml/core"
|
||||
mc:Ignorable="d"
|
||||
d:DataContext="{x:Static dx:SplashScreenViewModel.DesignTimeData}" Height="328"
|
||||
>
|
||||
<Grid Margin="20" Width="438" Height="100">
|
||||
<Grid.Effect>
|
||||
<DropShadowEffect ShadowDepth="1" Direction="-90" BlurRadius="10" Opacity="0.25" />
|
||||
</Grid.Effect>
|
||||
<Border Background="Black" CornerRadius="3" Opacity="0.25" />
|
||||
<Border CornerRadius="2" Margin="0,2,2,0" Background="White" />
|
||||
<StackPanel Orientation="Vertical" Margin="12">
|
||||
<TextBlock x:Name="Rotulo" TextWrapping="Wrap" Text="{Binding State}" Margin="12,12,12,0" Foreground="#FF2D2D2D" />
|
||||
<!--<TextBlock x:Name="Rotulo" TextWrapping="Wrap" Text="Cargando ..." Margin="12,12,12,0" Foreground="#FF2D2D2D" />-->
|
||||
<ProgressBar Height="14" Margin="12" IsIndeterminate="{Binding IsIndeterminate}" Value="{Binding Progress}" Maximum="{Binding MaxProgress}" />
|
||||
</StackPanel>
|
||||
</Grid>
|
||||
</UserControl>
|
||||
5
DXSplashScreen/SplashScreenTecnosis.xaml.vb
Normal file
5
DXSplashScreen/SplashScreenTecnosis.xaml.vb
Normal file
@@ -0,0 +1,5 @@
|
||||
Imports DevExpress.Xpf.Core
|
||||
|
||||
Public Class SplashScreenTecnosis
|
||||
|
||||
End Class
|
||||
Reference in New Issue
Block a user