17 lines
1.1 KiB
XML
17 lines
1.1 KiB
XML
<Window x:Class="OliviaAddInPro.MarchandoUnaDe"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
|
xmlns:ui="clr-namespace:OliviaAddInPro"
|
|
xmlns:local="clr-namespace:OliviaAddInPro"
|
|
mc:Ignorable="d"
|
|
Title="MarchandoUnaDe" Height="165" Width="462"
|
|
d:DataContext="{Binding Path=ui.MarchandoUnaDeViewModel}">
|
|
|
|
<Grid>
|
|
<Label Content="{Binding TextProceso}" HorizontalAlignment="Left" Margin="76,24,0,0" VerticalAlignment="Top" Width="303" Height="26"/>
|
|
<ProgressBar Minimum="0" Maximum="100" HorizontalAlignment="Left" Value="{Binding Progreso, UpdateSourceTrigger=PropertyChanged}" Height="20" Margin="76,66,0,0" VerticalAlignment="Top" Width="303"/>
|
|
<Label Content="{Binding TextEstado}" HorizontalAlignment="Left" Margin="95,91,0,0" VerticalAlignment="Top" Width="265" Height="28"/>
|
|
</Grid>
|
|
</Window> |