Tango/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3d/60476500d66c001a1f3dc7d0d6cfdd9d, branch software Twine softwares http://git.tvcloud.fr/Tango/atom/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3d/60476500d66c001a1f3dc7d0d6cfdd9d?h=software 2020-03-25T15:43:49Z merge 2020-03-25T15:43:49Z Avi Levkovich avi@twine-s.com 2020-03-25T15:43:49Z urn:sha1:d29da53d6f71f45749c0ede5b4cd7281ed3a270e
<UserControl x:Class="Tango.MachineStudio.Synchronization.Views.MainView"
             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:materialDesign="http://materialdesigninxaml.net/winfx/xaml/themes"
             xmlns:d="http://schemas.microsoft.com/expression/blend/2008" 
             xmlns:local="clr-namespace:Tango.MachineStudio.Synchronization.Views"
             xmlns:global="clr-namespace:Tango.MachineStudio.Synchronization"
             xmlns:controls="clr-namespace:Tango.SharedUI.Controls;assembly=Tango.SharedUI"
             mc:Ignorable="d" 
             d:DesignHeight="720" d:DesignWidth="1280" Background="White" DataContext="{x:Static global:ViewModelLocator.MainViewVM}">
    <Grid>
        <Grid.RowDefinitions>
            <RowDefinition Height="1*"/>
            <RowDefinition Height="200"/>
        </Grid.RowDefinitions>

        <Image Source="../Images/synch_big.png" Opacity="0.2" Margin="-100"></Image>
        
        <controls:MultiTransitionControl x:Name="TransitionControl" x:FieldModifier="public" AlwaysFade="True" TransitionType="Zoom">
            <controls:MultiTransitionControl.Controls>
                <ContentControl Tag="MenuView">
                    <local:MenuView></local:MenuView>
                </ContentControl>
                <ContentControl Tag="LocalSynchronizationView">
                    <local:LocalSynchronizationView></local:LocalSynchronizationView>
                </ContentControl>
                <ContentControl Tag="RemoteSynchronizationView">
                    <local:RemoteSynchronizationView></local:RemoteSynchronizationView>
                </ContentControl>
                <ContentControl Tag="DirectSynchronizationView">
                    <local:DirectSynchronizationView></local:DirectSynchronizationView>
                </ContentControl>
            </controls:MultiTransitionControl.Controls>
        </controls:MultiTransitionControl>

        <Grid Grid.Row="1">
            <TextBox x:Name="txtLog" TextChanged="txtLog_TextChanged" Text="{Binding Log}" Background="{StaticResource AccentColorBrush}" Opacity="0.8" Foreground="White" FontSize="11" Padding="5" Style="{x:Null}" BorderThickness="1" IsReadOnly="True" AcceptsReturn="True" VerticalScrollBarVisibility="Auto" TextWrapping="Wrap">

            </TextBox>
        </Grid>
    </Grid>
</UserControl>