Tango/Software/.metadata/.plugins/org.eclipse.core.resources/.history/76/51c1b5b2e38d001a12adc74468436fd9, branch software Twine softwares http://git.tvcloud.fr/Tango/atom/Software/.metadata/.plugins/org.eclipse.core.resources/.history/76/51c1b5b2e38d001a12adc74468436fd9?h=software 2020-05-06T07:21:51Z whs blower-convert the command to 12bit : 5V 2020-05-06T07:21:51Z Avi Levkovich avi@twine-s.com 2020-05-06T07:21:51Z urn:sha1:5873787311501663cfb4c380c15e731e2fb9a28d
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Imaging;
using System.Windows.Navigation;
using System.Windows.Shapes;

namespace Tango.MachineStudio.ActionLogs.Views
{
    /// <summary>
    /// Interaction logic for MainView.xaml
    /// </summary>
    public partial class MainView : UserControl
    {
        public MainView()
        {
            InitializeComponent();
        }
        
        private void Button_Click(object sender, RoutedEventArgs e)
        {
            selectActionsButton.IsChecked = true;
            e.Handled = true;
        }
    }
}