public override void OnApplyTemplate()
        {
            base.OnApplyTemplate();
            m_searchMenuViewListContainer = (FrameworkElement)GetTemplateChild("SearchMenuViewListContainer");
            m_list = (ListBox)GetTemplateChild("SearchMenuItemList");
            m_list.SelectionChanged += OnItemSelected;

            m_dragTabView = (Image)GetTemplateChild("SearchMenuDragTabView");

            m_dragTabClickHandler = new ControlClickHandler(m_dragTabView, OnDragTabMouseClick);

            m_dragTabView.MouseLeftButtonDown += OnDragTabMouseLeftButtonDown;
            m_dragTabView.MouseLeftButtonUp += OnDragTabMouseLeftButtonUp;

            m_closeButtonView = (Button)GetTemplateChild("SearchMenuCloseButton");
            m_closeButtonView.Click += CloseButtonClicked;

            m_progressSpinner = (ProgressBar)GetTemplateChild("SearchMenuSpinner");
            m_progressSpinner.Visibility = Visibility.Hidden;

            m_numResultsText = (TextBlock)GetTemplateChild("SearchMenuNumResultsText");
            m_numResultsText.Visibility = Visibility.Hidden;

            m_headerText = (TextBlock)GetTemplateChild("SearchMenuHeaderText");

            //m_headerCategoryImage = (Image)GetTemplateChild("SearchMenuHeaderCategoryIcon");

            PerformLayout(null, null);
        }
        private void openFiles(object sender, RoutedEventArgs e)
        {
            Microsoft.Win32.OpenFileDialog dlg = new Microsoft.Win32.OpenFileDialog();

            dlg.DefaultExt = ".bdf";
            dlg.Multiselect = true;
            dlg.Filter = "BDF Files (*.bdf) | *.bdf";

            bool? result = dlg.ShowDialog();

            if (result.HasValue && result.Value)
            {
                if (openedFiles == null)
                    openedFiles = new List<BDFFile>();
                openedFiles.Clear();

                workerList.Clear();

                disableButtons();


                foreach (string fileName in dlg.FileNames)
                {
                    BDFFile newFile = new BDFFile();
                    openedFiles.Add(newFile);
                    ProgressBar progressBar = new ProgressBar();

                    progressBar.Width = Double.NaN;
                    //progressBar.Height = 25.0;

                    progressBar.Minimum = 0;

                    bindProgressBarWithBDFFile(progressBar, ProgressBar.MaximumProperty, "Size", newFile);
                    bindProgressBarWithBDFFile(progressBar, ProgressBar.ValueProperty, "Read", newFile);

                    BackgroundWorker bw = new BackgroundWorker();
                    workerList.Add(bw);
                    bw.DoWork += (obj, args) => 
                    {
                        App.Current.Dispatcher.Invoke(new ThreadStart(delegate { this.stackPanel.Children.Add(progressBar); }));
                        try
                        {
                            newFile.readFromFile(fileName);
                        }
                        catch (Exception ex)
                        {
                            //
                        }
                        App.Current.Dispatcher.Invoke(new ThreadStart(delegate { this.stackPanel.Children.Remove(progressBar); }));
                    };

                    bw.RunWorkerCompleted += (obj, args) => 
                    {
                        tryEnableButtons();
                    };
                    
                    bw.RunWorkerAsync();
                }
            }
        }
Example #3
0
        public static async Task CopyFiles(string from, string to, ProgressBar bar, Label percent)
        {
            long total_size = new FileInfo(from).Length;

            using (var outStream = new FileStream(to, FileMode.Create, FileAccess.Write))
            {
                using (var inStream = new FileStream(from, FileMode.Open, FileAccess.Read))
                {
                    byte[] buffer = new byte[1024 * 1024];

                    long total_read = 0;

                    while (total_read < total_size)
                    {
                        int read = await inStream.ReadAsync(buffer, 0, buffer.Length);

                        await outStream.WriteAsync(buffer, 0, read);

                        total_read += read;

                        await System.Windows.Application.Current.Dispatcher.BeginInvoke(DispatcherPriority.Normal, new Action(() =>
                        {
                            long a = total_read * 100 / total_size;
                            bar.Value = a;
                            percent.Content = a + " %";
                        }));
                    }
                }
            }
        }
Example #4
0
        public static async Task DownloadPhoto(PhotoItem photo, String path, ProgressBar ProgressBar)
        {
            try
            {
                if (path[path.Length - 1] != '\\')
                {
                    path = path + "\\";
                }
                var fileName = photo.UrlPhoto;
                if (fileName.Length > 40)
                {
                    fileName = fileName.Substring(0, 40);
                }
                fileName = fileName.Replace(":", "").Replace("\\", "").Replace("/", "").Replace("*", "").Replace("?", "").Replace("\"", "");
                using (var client = new WebClient())
                {

                    client.DownloadProgressChanged += (o, args) =>
                    {
                        ProgressBar.Value = args.ProgressPercentage;
                    };
                    client.DownloadFileCompleted += (o, args) =>
                    {
                        ProgressBar.Value = 0;
                    };
                    await client.DownloadFileTaskAsync(new Uri(photo.UrlPhoto), path + fileName + ".jpg");
                }
            }
            catch (Exception)
            {
            }
        }
Example #5
0
        public VIMMediaControl(IVIMContainer parent)
        {
            _parent = parent;
            if (_singleMediaElement.Parent != null)
                ((Grid) _singleMediaElement.Parent).Children.Remove(_singleMediaElement);
            _mediaElement = _singleMediaElement;

            Children.Add(_mediaElement);
            _mediaElement.MediaEnded += VIMMediaControl_MediaEnded;
            _mediaElement.MediaOpened += _mediaElement_MediaOpened;

            _progress = new ProgressBar
                            {
                                Height = 12,
                                VerticalAlignment = VerticalAlignment.Bottom,
                                Background = Brushes.Transparent,
                                Value = 0,
                                Visibility = Visibility.Hidden,
                                Margin = new Thickness(0, 0, 0, 10)
                            };

            var brush = Brushes.DarkGreen.Clone();
            brush.Opacity = 0.5;
            _progress.Foreground = brush;
            Children.Add(_progress);
        }
Example #6
0
        public List<Car> Game(ProgressBar pr1, ProgressBar pr2, ProgressBar pr3)
        {
            Console.WriteLine("ky");
            List<Car> cars = new List<Car>();

            StepDelegate stepDelegate1;
            StepDelegate stepDelegate2;
            StepDelegate stepDelegate3;

            cars.Add(new Car(225));
            cars.Add(new Car(225));
            cars.Add(new Car(210));

            stepDelegate1 = Steps;
            stepDelegate2 = Steps;
            stepDelegate3 = Steps;

            IAsyncResult result1 = stepDelegate1.BeginInvoke(cars[0], pr1, null, null);
            IAsyncResult result2 = stepDelegate2.BeginInvoke(cars[1], pr2, null, null);
            IAsyncResult result3 = stepDelegate3.BeginInvoke(cars[2], pr3, null, null);

            int _0 = stepDelegate1.EndInvoke(result1);
            int _1 = stepDelegate2.EndInvoke(result2);
            int _2 = stepDelegate3.EndInvoke(result3);

            Console.WriteLine(string.Format("{0} - {1} - {2}", _0, _1, _2));

            return cars;
        }
Example #7
0
        public static async Task DownloadAudio(AudioResponse composition, String path, ProgressBar ProgressBar)
        {
            try
            {
                if (path[path.Length - 1] != '\\')
                {
                    path = path + "\\";
                }
                var fileName = composition.Artist + " – " + composition.AudioTitle;
                if (fileName.Length > 40)
                {
                    fileName = fileName.Substring(0, 40);
                }
                fileName = fileName.Replace(":", "").Replace("\\", "").Replace("/", "").Replace("*", "").Replace("?", "").Replace("\"", "");
                using (var client = new WebClient())
                {

                    client.DownloadProgressChanged += (o, args) =>
                    {
                        ProgressBar.Value = args.ProgressPercentage;
                    };
                    client.DownloadFileCompleted += (o, args) =>
                    {
                        ProgressBar.Value = 0;
                    };
                    await client.DownloadFileTaskAsync(new Uri(composition.AudioUrl), path + fileName + ".mp3");
                }
            }
            catch (Exception)
            {
            }
        }
        /// <summary>
        /// Initializes a new instance of the <see cref="DoublePlayer" /> class.
        /// </summary>
        /// <param name="player1">The player1.</param>
        /// <param name="progress1">The progress1.</param>
        /// <param name="remaining1">The remaining1.</param>
        /// <param name="p2">The p2.</param>
        /// <param name="progress2">The progress2.</param>
        /// <param name="remaining2">The remaining2.</param>
        public DoublePlayer(MediaElement player1, ProgressBar progress1, TextBlock remaining1, MediaElement p2, ProgressBar progress2, TextBlock remaining2)
        {
            _player1 = player1;
            _player1.MediaOpened += _player1_MediaOpened;
            _player1.LoadedBehavior = MediaState.Manual;
            _player1.UnloadedBehavior = MediaState.Stop;
            _player1.MediaEnded += _player1_MediaEnded;
            _progress1 = progress1;
            _remaining1 = remaining1;
            _player2 = p2;
            _player2.MediaOpened += _player2_MediaOpened;
            _player2.LoadedBehavior = MediaState.Manual;
            _player2.UnloadedBehavior = MediaState.Stop;
            _player2.MediaEnded += _player2_MediaEnded;
            _progress2 = progress2;
            _remaining2 = remaining2;

            // set the update timer for the progress bars
            _timerPlayer1.Interval = TimeSpan.FromMilliseconds(1000);
            _timerPlayer1.Tick += new EventHandler(TriggerUIRefresh);
            _timerPlayer1.Start();

            Active = _player1;
            InActive = _player2;
        }
Example #9
0
        // Display an inderminate progress indicator
        public void activityStart(string unused)
        {
            Deployment.Current.Dispatcher.BeginInvoke(() =>
            {
                PhoneApplicationFrame frame = Application.Current.RootVisual as PhoneApplicationFrame;
                if (frame != null)
                {
                    PhoneApplicationPage page = frame.Content as PhoneApplicationPage;

                    if (page != null)
                    {
                        Grid grid = page.FindName("LayoutRoot") as Grid;
                        if (grid != null)
                        {
                            if (progressBar != null)
                            {
                                grid.Children.Remove(progressBar);
                            }
                            progressBar = new ProgressBar();
                            progressBar.IsIndeterminate = true;
                            progressBar.IsEnabled = true;

                            grid.Children.Add(progressBar);
                        }
                    }
                }
            });
        }
  /// Konstruktor
 public MainPage()
 {
     InitializeComponent();
     SetTextBoxToEmail(this.email);
     this.bar = new ProgressBar();
     bar.IsIndeterminate = true;
 }
Example #11
0
        public AWindow(IWindow owner)
            : base(owner, Core.settings)
        {
            TabItem from_me = new TabItem();
            from_me.BeginInit();
            from_me.EndInit();
            this.Background = from_me.Background;
            ProgressBar from_color = new ProgressBar();
            default_progress_color = from_color.Foreground;

            // Taskbar progress setup
            TaskbarItemInfo = new TaskbarItemInfo();
            //            var uriSource = new Uri(System.IO.Path.Combine(Core.ExecutablePath, "masgau.ico"), UriKind.Relative);

            System.Drawing.Icon ico = Properties.Resources.MASGAUIcon;

            this.Icon = System.Windows.Interop.Imaging.CreateBitmapSourceFromHBitmap(
                    ico.ToBitmap().GetHbitmap(),
                    IntPtr.Zero,
                    Int32Rect.Empty,
                    BitmapSizeOptions.FromEmptyOptions());

            if (owner != null) {
                this.Owner = owner as System.Windows.Window;
                this.WindowStartupLocation = System.Windows.WindowStartupLocation.CenterOwner;
            } else {
                this.WindowStartupLocation = System.Windows.WindowStartupLocation.CenterScreen;
            }
        }
Example #12
0
 public static void Start(ProgressBar progbar, TextBlock progbarLabel)
 {
     progbar.Value = 0;
     progbarLabel.Text = "Processing Image: ";
     progbar.IsIndeterminate = false;
     progbar.Visibility = Visibility.Visible;
 }
Example #13
0
      void InitializeControl()
      {
        Width = 400;
        Height = 100;

        _label = new TextBlock
        {
          Text = string.Empty
        };

        _bar = new ProgressBar
        {
          Height = 20
          ,
          Minimum = 0
        };

        _btn = new Button
        {
          Content = "Cancel"
          ,
          Margin = new Thickness(300, 0, 0, 0)
        };

        var panel = new StackPanel();

        panel.Children.Add(_label);
        panel.Children.Add(_bar);
        panel.Children.Add(_btn);

        Content = panel;
      }
        private static DependencyObject GetAnimationElement(ProgressBar progressBar)
        {
            var template = progressBar.Template;
            if (template == null) return null;

            return template.FindName("PART_GlowRect", progressBar) as DependencyObject;
        }
Example #15
0
        public void DajCzadu(string zapytanie, ProgressBar progBar)
        {
            progBar.Value = 0;
            Term[] termyZapytania = PrzerobNaTermy(zapytanie);

            this.DoStaff(termyZapytania, progBar);
        }
Example #16
0
        public void DajCzadu500(string zapytanie, ProgressBar progBar, int numbeOfAddTerms, double termCoefficent)
        {
            progBar.Value = 0;
            Term[] previousZapytanie = PrzerobNaTermy(zapytanie);
            List<Term> newZaptanie = previousZapytanie.ToList<Term>();
            Dictionary<Term , List<CorelatedTerm>> corTerms= this.BuildMeMatrix();

            foreach (Term questione in previousZapytanie)
            {
                Term additionalTerm;
                //Term extra = corTerms[questione].First(); // ale urwał!!! ale nie sprawdziłem czy tak moze być a teraz już tak zostanie na zawsze:)!!!
                List<CorelatedTerm> corelated=null;
                var xxx = corTerms.FirstOrDefault(x => x.Key.TermStemming == questione.TermStemming); // ale urwal 500!!!
                if (xxx.Value == null)
                    continue;
                corelated = xxx.Value.ToList();  // ale urwał 5000!!!!
                do
                {
                    additionalTerm = corelated.First();
                    corelated.Remove(additionalTerm as CorelatedTerm);
                } while (additionalTerm != null && additionalTerm.TermStemming.Equals(questione.TermStemming));

                additionalTerm.TermCoefficent = termCoefficent; // wstaw wagÄ™!!!
                newZaptanie.Add(additionalTerm);

                numbeOfAddTerms--;
                if (numbeOfAddTerms == 0) break;
            }

            this.DoStaff(newZaptanie.Distinct().ToArray(),progBar);
        }
Example #17
0
 public NFCConnection(Dispatcher d, ProgressBar progress, TextBlock status)
 {
     //set the dispatcher and progress bar for updating the UI
     _d = d;
     _progress = progress;
     _txtStatus = status;
 }
Example #18
0
        private void MakeFive(object sender, RoutedEventArgs e)
        {
            sbar.Items.Clear();
            TextBlock txtb = new TextBlock();
            txtb.Text = "ProgressBar";
            sbar.Items.Add(txtb);
            Button btn = new Button();
            btn.Height = 50;
            btn.Width = 50;
            Image image = new Image();
            BitmapImage bi = new BitmapImage();
            bi.BeginInit();
            bi.UriSource = new Uri(@"pack://application:,,,/data/cat.png");
            bi.EndInit();
            image.Source = bi;
            ImageBrush imagebrush = new ImageBrush(bi);
            btn.Background = imagebrush;

            ProgressBar progbar = new ProgressBar();
            progbar.Background = imagebrush;
            progbar.Width = 150;
            progbar.Height = 15;
            Duration duration = new Duration(TimeSpan.FromMilliseconds(2000));
            DoubleAnimation doubleanimation = new DoubleAnimation(100.0, duration);
            doubleanimation.RepeatBehavior = new RepeatBehavior(5);
            progbar.BeginAnimation(ProgressBar.ValueProperty, doubleanimation);
            btn.Content = progbar;
            sbar.Items.Add(btn);
         }
Example #19
0
        /// <summary>
        /// Overrides the OnApplyTemplate method.
        /// </summary>
        public override void OnApplyTemplate()
        {
            progressBar = GetTemplateChild("PART_ProgressBar") as ProgressBar;
            progressBar.IsIndeterminate = IsBusy;

            base.OnApplyTemplate();
            ChangeVisualState(false);
        }
 public AppProgressBarController(Grid form, ProgressBar bar, TextBlock text)
 {
     ProgressForm = form;
     ProgressText = text;
     ProgressBar = bar;
     RefreshTimer = new RefreshTimer { AutoReset = true, Interval = 100, Object = this };
     RefreshTimer.Elapsed += TimerElapsed;
 }
 public void InitializeComponent() {
     if (_contentLoaded) {
         return;
     }
     _contentLoaded = true;
     System.Windows.Application.LoadComponent(this, new System.Uri("/PhoneToolkitSample8;component/Samples/PerformanceProgressBarSample.xaml", System.UriKind.Relative));
     this._standardProgressBar = ((System.Windows.Controls.ProgressBar)(this.FindName("_standardProgressBar")));
 }
		public SearchBot (
			ProgressBar progressBar,
			Action onSearchCompleted
		) {
			worker = new BackgroundWorker();
			this.SearchComplete += onSearchCompleted;
			this.progressBar = progressBar;
		}
 public ChangesFetchingGuiUpdater(MainPage mainPage, ListBox changesListBox, 
     ProgressBar progressBar, TextBlock errorTextBlock)
 {
     this.mainPage = mainPage;
     this.changesListBox = changesListBox;
     this.progressBar = progressBar;
     this.errorTextBlock = errorTextBlock;
 }
        private double getProgressBarValueFromMousePos(ProgressBar progressBar, MouseButtonEventArgs e)
        {
            double onePixelDuration;
            double mousePosition = e.GetPosition(progressBar).X;

            onePixelDuration = (progressBar.Maximum / progressBar.ActualWidth);
            return onePixelDuration * mousePosition;
        }
 public TestPlanMigration(TfsTeamProjectCollection sourceTfs, TfsTeamProjectCollection destinationTfs, string sourceProject, string destinationProject, Hashtable workItemMap, ProgressBar progressBar)
 {
     sourceproj = GetProject(sourceTfs, sourceProject);
     destinationproj = GetProject(destinationTfs, destinationProject);
     this.workItemMap = workItemMap;
     this.progressBar = progressBar;
     projectName = sourceProject;
 }
 public void InitializeComponent() {
     if (_contentLoaded) {
         return;
     }
     _contentLoaded = true;
     System.Windows.Application.LoadComponent(this, new System.Uri("/PictrGllr;component/View/Copy%20of%20SplashScreenControl.xaml", System.UriKind.Relative));
     this.LayoutRoot = ((System.Windows.Controls.Grid)(this.FindName("LayoutRoot")));
     this.SplashScreenProgressbar = ((System.Windows.Controls.ProgressBar)(this.FindName("SplashScreenProgressbar")));
 }
Example #27
0
 public void InitializeComponent() {
     if (_contentLoaded) {
         return;
     }
     _contentLoaded = true;
     System.Windows.Application.LoadComponent(this, new System.Uri("/site2App.WP8;component/Overlay.xaml", System.UriKind.Relative));
     this.LayoutRoot = ((System.Windows.Controls.Grid)(this.FindName("LayoutRoot")));
     this.ProgBar = ((System.Windows.Controls.ProgressBar)(this.FindName("ProgBar")));
 }
Example #28
0
 public void InitializeComponent() {
     if (_contentLoaded) {
         return;
     }
     _contentLoaded = true;
     System.Windows.Application.LoadComponent(this, new System.Uri("/iFixit.WP8.UI;component/Views/Device.xaml", System.UriKind.Relative));
     this.LayoutRoot = ((System.Windows.Controls.Grid)(this.FindName("LayoutRoot")));
     this._performanceProgressBar = ((System.Windows.Controls.ProgressBar)(this.FindName("_performanceProgressBar")));
 }
Example #29
0
 void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) {
     switch (connectionId)
     {
     case 1:
     this.PBStatus = ((System.Windows.Controls.ProgressBar)(target));
     return;
     }
     this._contentLoaded = true;
 }
Example #30
0
 public void InitializeComponent() {
     if (_contentLoaded) {
         return;
     }
     _contentLoaded = true;
     System.Windows.Application.LoadComponent(this, new System.Uri("/Here;component/Read.xaml", System.UriKind.Relative));
     this.pread = ((System.Windows.Controls.ProgressBar)(this.FindName("pread")));
     this.Read_View = ((Microsoft.Phone.Controls.WebBrowser)(this.FindName("Read_View")));
 }
Example #31
0
        void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target)
        {
            switch (connectionId)
            {
            case 1:

            #line 8 "..\..\..\..\src\ui\ConnectionTestDialog.xaml"
                ((RemotePLC.src.ui.ConnectionTestDialog)(target)).Loaded += new System.Windows.RoutedEventHandler(this.Window_Loaded);

            #line default
            #line hidden

            #line 8 "..\..\..\..\src\ui\ConnectionTestDialog.xaml"
                ((RemotePLC.src.ui.ConnectionTestDialog)(target)).Closed += new System.EventHandler(this.Window_Closed);

            #line default
            #line hidden
                return;

            case 2:
                this.pointbar1 = ((System.Windows.Controls.ProgressBar)(target));
                return;

            case 3:
                this.pointbar2 = ((System.Windows.Controls.ProgressBar)(target));
                return;

            case 4:
                this.pointbar3 = ((System.Windows.Controls.ProgressBar)(target));
                return;

            case 5:
                this.imgOK1 = ((System.Windows.Controls.Image)(target));
                return;

            case 6:
                this.imgOK2 = ((System.Windows.Controls.Image)(target));
                return;

            case 7:
                this.imgOK3 = ((System.Windows.Controls.Image)(target));
                return;

            case 8:
                this.imgERR1 = ((System.Windows.Controls.Image)(target));
                return;

            case 9:
                this.imgERR2 = ((System.Windows.Controls.Image)(target));
                return;

            case 10:
                this.imgERR3 = ((System.Windows.Controls.Image)(target));
                return;

            case 11:
                this.imgNTC1 = ((System.Windows.Controls.Image)(target));
                return;

            case 12:
                this.imgNTC2 = ((System.Windows.Controls.Image)(target));
                return;

            case 13:
                this.imgNTC3 = ((System.Windows.Controls.Image)(target));
                return;

            case 14:
                this.reasonBlock = ((System.Windows.Controls.TextBlock)(target));
                return;
            }
            this._contentLoaded = true;
        }
Example #32
0
        void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target)
        {
            switch (connectionId)
            {
            case 1:
                this.PlayBtn = ((System.Windows.Controls.Button)(target));

            #line 15 "..\..\MainWindow.xaml"
                this.PlayBtn.Click += new System.Windows.RoutedEventHandler(this.PlayTrack);

            #line default
            #line hidden
                return;

            case 2:
                this.NextBtn = ((System.Windows.Controls.Button)(target));

            #line 20 "..\..\MainWindow.xaml"
                this.NextBtn.Click += new System.Windows.RoutedEventHandler(this.NextTrack);

            #line default
            #line hidden
                return;

            case 3:
                this.PrevBtn = ((System.Windows.Controls.Button)(target));

            #line 25 "..\..\MainWindow.xaml"
                this.PrevBtn.Click += new System.Windows.RoutedEventHandler(this.PreviousTrack);

            #line default
            #line hidden
                return;

            case 4:
                this.Repeat = ((System.Windows.Controls.CheckBox)(target));

            #line 33 "..\..\MainWindow.xaml"
                this.Repeat.Checked += new System.Windows.RoutedEventHandler(this.repeatChanged);

            #line default
            #line hidden

            #line 33 "..\..\MainWindow.xaml"
                this.Repeat.Unchecked += new System.Windows.RoutedEventHandler(this.repeatChanged);

            #line default
            #line hidden
                return;

            case 5:
                this.Shuffle = ((System.Windows.Controls.CheckBox)(target));

            #line 34 "..\..\MainWindow.xaml"
                this.Shuffle.Checked += new System.Windows.RoutedEventHandler(this.shuffleChanged);

            #line default
            #line hidden

            #line 34 "..\..\MainWindow.xaml"
                this.Shuffle.Unchecked += new System.Windows.RoutedEventHandler(this.shuffleChanged);

            #line default
            #line hidden
                return;

            case 6:
                this.OpenBtn = ((System.Windows.Controls.Button)(target));

            #line 35 "..\..\MainWindow.xaml"
                this.OpenBtn.Click += new System.Windows.RoutedEventHandler(this.ShowOpenFileDialog);

            #line default
            #line hidden
                return;

            case 7:
                this.Title = ((System.Windows.Controls.Label)(target));
                return;

            case 8:
                this.Album = ((System.Windows.Controls.Label)(target));
                return;

            case 9:
                this.DeleteSong = ((System.Windows.Controls.Button)(target));

            #line 45 "..\..\MainWindow.xaml"
                this.DeleteSong.Click += new System.Windows.RoutedEventHandler(this.DeleteCurrentSong);

            #line default
            #line hidden
                return;

            case 10:
                this.SongDuration = ((System.Windows.Controls.Label)(target));
                return;

            case 11:
                this.SongElapsedTime = ((System.Windows.Controls.ProgressBar)(target));

            #line 51 "..\..\MainWindow.xaml"
                this.SongElapsedTime.MouseDoubleClick += new System.Windows.Input.MouseButtonEventHandler(this.SetPlaybackPosition);

            #line default
            #line hidden
                return;

            case 12:
                this.SongElapsedLabel = ((System.Windows.Controls.Label)(target));
                return;

            case 13:
                this.VolumeSlider = ((System.Windows.Controls.Slider)(target));

            #line 53 "..\..\MainWindow.xaml"
                this.VolumeSlider.ValueChanged += new System.Windows.RoutedPropertyChangedEventHandler <double>(this.UpdateVolume);

            #line default
            #line hidden
                return;

            case 14:
                this.Artist = ((System.Windows.Controls.Label)(target));
                return;
            }
            this._contentLoaded = true;
        }
Example #33
0
        void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target)
        {
            switch (connectionId)
            {
            case 1:

            #line 17 "..\..\MainWindow.xaml"
                ((System.Windows.Controls.StackPanel)(target)).MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.StackPanel_MouseDown);

            #line default
            #line hidden
                return;

            case 2:

            #line 19 "..\..\MainWindow.xaml"
                ((System.Windows.Controls.Image)(target)).MouseLeftButtonDown += new System.Windows.Input.MouseButtonEventHandler(this.Image_MouseLeftButtonDown);

            #line default
            #line hidden
                return;

            case 3:
                this.startDatePicker = ((System.Windows.Controls.DatePicker)(target));
                return;

            case 4:
                this.endDatePicker = ((System.Windows.Controls.DatePicker)(target));
                return;

            case 5:
                this.btnDoAsynchronousCalculation = ((System.Windows.Controls.Button)(target));

            #line 27 "..\..\MainWindow.xaml"
                this.btnDoAsynchronousCalculation.Click += new System.Windows.RoutedEventHandler(this.btnDoAsynchronousCalculation_Click);

            #line default
            #line hidden
                return;

            case 6:
                this.btnCreateReport = ((System.Windows.Controls.Button)(target));

            #line 28 "..\..\MainWindow.xaml"
                this.btnCreateReport.Click += new System.Windows.RoutedEventHandler(this.btnCreateReport_Click);

            #line default
            #line hidden
                return;

            case 7:

            #line 49 "..\..\MainWindow.xaml"
                ((System.Windows.Controls.MenuItem)(target)).Click += new System.Windows.RoutedEventHandler(this.MenuItem_Click);

            #line default
            #line hidden
                return;

            case 8:
                this.totalColsTxt = ((System.Windows.Controls.TextBox)(target));
                return;

            case 9:
                this.startColTxt = ((System.Windows.Controls.TextBox)(target));
                return;

            case 10:
                this.lblPath = ((System.Windows.Controls.TextBlock)(target));
                return;

            case 11:
                this.pbCalculationProgress = ((System.Windows.Controls.ProgressBar)(target));
                return;

            case 12:
                this.lbResults = ((System.Windows.Controls.DataGrid)(target));
                return;
            }
            this._contentLoaded = true;
        }
Example #34
0
        void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target)
        {
            switch (connectionId)
            {
            case 1:
                this.vbNormalPage = ((System.Windows.Controls.Viewbox)(target));
                return;

            case 2:
                this.gdNormalPage = ((System.Windows.Controls.Grid)(target));
                return;

            case 3:
                this.gdUartInfo = ((System.Windows.Controls.Grid)(target));
                return;

            case 4:
                this.cbCanType = ((System.Windows.Controls.ComboBox)(target));
                return;

            case 5:
                this.cbDeviceIndex = ((System.Windows.Controls.ComboBox)(target));
                return;

            case 6:
                this.cbCanIndex = ((System.Windows.Controls.ComboBox)(target));

            #line 64 "..\..\..\..\..\Controls\PageControls\BootloaderPage.xaml"
                this.cbCanIndex.SelectionChanged += new System.Windows.Controls.SelectionChangedEventHandler(this.ComboBox_SelectionChanged);

            #line default
            #line hidden
                return;

            case 7:
                this.cbCanBaudrate = ((System.Windows.Controls.ComboBox)(target));

            #line 72 "..\..\..\..\..\Controls\PageControls\BootloaderPage.xaml"
                this.cbCanBaudrate.SelectionChanged += new System.Windows.Controls.SelectionChangedEventHandler(this.ComboBox_SelectionChanged);

            #line default
            #line hidden
                return;

            case 8:
                this.btnCanConnect = ((System.Windows.Controls.Button)(target));

            #line 84 "..\..\..\..\..\Controls\PageControls\BootloaderPage.xaml"
                this.btnCanConnect.Click += new System.Windows.RoutedEventHandler(this.btnConnectCan_Click);

            #line default
            #line hidden
                return;

            case 9:
                this.gdBody = ((System.Windows.Controls.Grid)(target));
                return;

            case 10:
                this.sIDstatusOfMcuReset = ((BeatfanControls.Indicators.StateIndicator1)(target));
                return;

            case 11:
                this.btnResetMcu = ((System.Windows.Controls.Button)(target));

            #line 107 "..\..\..\..\..\Controls\PageControls\BootloaderPage.xaml"
                this.btnResetMcu.Click += new System.Windows.RoutedEventHandler(this.btnResetMcu_Click);

            #line default
            #line hidden
                return;

            case 12:
                this.sIDstatusOfBootloader = ((BeatfanControls.Indicators.StateIndicator1)(target));
                return;

            case 13:
                this.btnEnterBootloader = ((System.Windows.Controls.Button)(target));

            #line 109 "..\..\..\..\..\Controls\PageControls\BootloaderPage.xaml"
                this.btnEnterBootloader.Click += new System.Windows.RoutedEventHandler(this.btnEnterBootloader_Click);

            #line default
            #line hidden
                return;

            case 14:
                this.tbSelectedHexFilePath = ((System.Windows.Controls.TextBox)(target));

            #line 118 "..\..\..\..\..\Controls\PageControls\BootloaderPage.xaml"
                this.tbSelectedHexFilePath.PreviewDrop += new System.Windows.DragEventHandler(this.TextBox_Drop);

            #line default
            #line hidden

            #line 118 "..\..\..\..\..\Controls\PageControls\BootloaderPage.xaml"
                this.tbSelectedHexFilePath.PreviewDragOver += new System.Windows.DragEventHandler(this.TextBox_DragOver);

            #line default
            #line hidden
                return;

            case 15:
                this.btnSelectHexFile = ((System.Windows.Controls.Button)(target));

            #line 119 "..\..\..\..\..\Controls\PageControls\BootloaderPage.xaml"
                this.btnSelectHexFile.Click += new System.Windows.RoutedEventHandler(this.btnSelectHexFile_Click);

            #line default
            #line hidden
                return;

            case 16:
                this.psbProgress = ((System.Windows.Controls.ProgressBar)(target));
                return;

            case 17:
                this.btnStartBurn = ((System.Windows.Controls.Button)(target));

            #line 131 "..\..\..\..\..\Controls\PageControls\BootloaderPage.xaml"
                this.btnStartBurn.Click += new System.Windows.RoutedEventHandler(this.btnStartBurn_Click);

            #line default
            #line hidden
                return;

            case 18:
                this.gdMsg = ((System.Windows.Controls.Grid)(target));
                return;

            case 19:
                this.btnClearMsg = ((System.Windows.Controls.Button)(target));

            #line 151 "..\..\..\..\..\Controls\PageControls\BootloaderPage.xaml"
                this.btnClearMsg.Click += new System.Windows.RoutedEventHandler(this.btnClearMsg_Click);

            #line default
            #line hidden
                return;

            case 20:
                this.btnShowMsg = ((System.Windows.Controls.Button)(target));

            #line 152 "..\..\..\..\..\Controls\PageControls\BootloaderPage.xaml"
                this.btnShowMsg.Click += new System.Windows.RoutedEventHandler(this.btnShowMsg_Click);

            #line default
            #line hidden
                return;

            case 21:
                this.rtbMsg = ((System.Windows.Controls.RichTextBox)(target));
                return;

            case 22:
                this.paraMsg = ((System.Windows.Documents.Paragraph)(target));
                return;
            }
            this._contentLoaded = true;
        }
Example #35
0
        void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target)
        {
            switch (connectionId)
            {
            case 1:
                this.EnkriptoWindow = ((Enkripto.MainWindow)(target));

            #line 4 "..\..\MainWindow.xaml"
                this.EnkriptoWindow.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.EnkriptoWindow_MouseDown);

            #line default
            #line hidden
                return;

            case 2:
                this.exitLabel = ((System.Windows.Controls.Label)(target));

            #line 6 "..\..\MainWindow.xaml"
                this.exitLabel.MouseEnter += new System.Windows.Input.MouseEventHandler(this.exitLabel_MouseEnter);

            #line default
            #line hidden

            #line 6 "..\..\MainWindow.xaml"
                this.exitLabel.MouseLeave += new System.Windows.Input.MouseEventHandler(this.exitLabel_MouseLeave);

            #line default
            #line hidden

            #line 6 "..\..\MainWindow.xaml"
                this.exitLabel.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.exitLabel_MouseDown);

            #line default
            #line hidden
                return;

            case 3:
                this.minimizeLabel = ((System.Windows.Controls.Label)(target));

            #line 7 "..\..\MainWindow.xaml"
                this.minimizeLabel.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.minimizeLabel_MouseDown);

            #line default
            #line hidden

            #line 7 "..\..\MainWindow.xaml"
                this.minimizeLabel.MouseEnter += new System.Windows.Input.MouseEventHandler(this.minimizeLabel_MouseEnter);

            #line default
            #line hidden

            #line 7 "..\..\MainWindow.xaml"
                this.minimizeLabel.MouseLeave += new System.Windows.Input.MouseEventHandler(this.minimizeLabel_MouseLeave);

            #line default
            #line hidden
                return;

            case 4:
                this.filenameBox = ((System.Windows.Controls.TextBox)(target));
                return;

            case 5:
                this.browseButton = ((System.Windows.Controls.Button)(target));

            #line 13 "..\..\MainWindow.xaml"
                this.browseButton.MouseEnter += new System.Windows.Input.MouseEventHandler(this.browseButton_MouseEnter);

            #line default
            #line hidden

            #line 13 "..\..\MainWindow.xaml"
                this.browseButton.MouseLeave += new System.Windows.Input.MouseEventHandler(this.browseButton_MouseLeave);

            #line default
            #line hidden

            #line 13 "..\..\MainWindow.xaml"
                this.browseButton.Click += new System.Windows.RoutedEventHandler(this.browseButton_Click);

            #line default
            #line hidden
                return;

            case 6:
                this.passwordBox = ((System.Windows.Controls.TextBox)(target));
                return;

            case 7:
                this.encryptButton = ((System.Windows.Controls.Button)(target));

            #line 17 "..\..\MainWindow.xaml"
                this.encryptButton.Click += new System.Windows.RoutedEventHandler(this.encryptButton_Click);

            #line default
            #line hidden

            #line 17 "..\..\MainWindow.xaml"
                this.encryptButton.MouseEnter += new System.Windows.Input.MouseEventHandler(this.encryptButton_MouseEnter);

            #line default
            #line hidden

            #line 17 "..\..\MainWindow.xaml"
                this.encryptButton.MouseLeave += new System.Windows.Input.MouseEventHandler(this.encryptButton_MouseLeave);

            #line default
            #line hidden
                return;

            case 8:
                this.progressBar = ((System.Windows.Controls.ProgressBar)(target));
                return;
            }
            this._contentLoaded = true;
        }
Example #36
0
        void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target)
        {
            switch (connectionId)
            {
            case 1:
                this.uc_ListStaff = ((SourceCode.ListStaff)(target));
                return;

            case 2:
                this.UCNhanVien = ((System.Windows.Controls.Grid)(target));

            #line 13 "..\..\ListStaff.xaml"
                this.UCNhanVien.Loaded += new System.Windows.RoutedEventHandler(this.UCNhanVien_Loaded);

            #line default
            #line hidden
                return;

            case 3:
                this.SelectedItemWraPnel = ((System.Windows.Controls.WrapPanel)(target));
                return;

            case 4:
                this.txbID_User = ((System.Windows.Controls.TextBox)(target));
                return;

            case 5:
                this.txbName = ((System.Windows.Controls.TextBox)(target));
                return;

            case 6:
                this.txbUserName = ((System.Windows.Controls.TextBox)(target));
                return;

            case 7:
                this.txbGender = ((System.Windows.Controls.TextBox)(target));
                return;

            case 8:
                this.txbIDNum = ((System.Windows.Controls.TextBox)(target));
                return;

            case 9:
                this.txbSalary = ((System.Windows.Controls.TextBox)(target));
                return;

            case 10:
                this.txbMedical = ((System.Windows.Controls.TextBox)(target));
                return;

            case 11:
                this.txbBank = ((System.Windows.Controls.TextBox)(target));
                return;

            case 12:
                this.txbEmail = ((System.Windows.Controls.TextBox)(target));
                return;

            case 13:
                this.txbPhone = ((System.Windows.Controls.TextBox)(target));
                return;

            case 14:
                this.dpBirthDay = ((System.Windows.Controls.DatePicker)(target));
                return;

            case 15:
                this.dpDayJoin = ((System.Windows.Controls.DatePicker)(target));
                return;

            case 16:

            #line 68 "..\..\ListStaff.xaml"
                ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.Button_Click);

            #line default
            #line hidden
                return;

            case 17:
                this.prgb = ((System.Windows.Controls.ProgressBar)(target));
                return;

            case 18:
                this.lbprgrb = ((System.Windows.Controls.Label)(target));
                return;

            case 19:

            #line 77 "..\..\ListStaff.xaml"
                ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.Button_Click_1);

            #line default
            #line hidden
                return;

            case 20:
                this.lvListStaff = ((System.Windows.Controls.ListView)(target));

            #line 87 "..\..\ListStaff.xaml"
                this.lvListStaff.SelectionChanged += new System.Windows.Controls.SelectionChangedEventHandler(this.lvListStaff_SelectionChanged);

            #line default
            #line hidden
                return;
            }
            this._contentLoaded = true;
        }
Example #37
0
        void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target)
        {
            switch (connectionId)
            {
            case 1:
                this.image = ((System.Windows.Controls.Image)(target));
                return;

            case 2:

            #line 13 "..\..\MainWindow.xaml"
                ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.Button_Click);

            #line default
            #line hidden
                return;

            case 3:
                this.labelCompressionStatus = ((System.Windows.Controls.TextBlock)(target));
                return;

            case 4:
                this.progressBar1 = ((System.Windows.Controls.ProgressBar)(target));
                return;

            case 5:
                this.FOlderSelect = ((System.Windows.Controls.Button)(target));

            #line 16 "..\..\MainWindow.xaml"
                this.FOlderSelect.Click += new System.Windows.RoutedEventHandler(this.FOlderSelect_Click);

            #line default
            #line hidden
                return;

            case 6:
                this.PathText = ((System.Windows.Controls.TextBlock)(target));
                return;

            case 7:
                this.DestinationButton = ((System.Windows.Controls.Button)(target));

            #line 20 "..\..\MainWindow.xaml"
                this.DestinationButton.Click += new System.Windows.RoutedEventHandler(this.DestinationButton_Click);

            #line default
            #line hidden
                return;

            case 8:
                this.DestinationText = ((System.Windows.Controls.TextBlock)(target));
                return;

            case 9:
                this.gameDescTitle = ((System.Windows.Controls.TextBlock)(target));
                return;

            case 10:
                this.gameControlsTitle = ((System.Windows.Controls.TextBlock)(target));
                return;

            case 11:
                this.gameFeaturesTitle = ((System.Windows.Controls.TextBlock)(target));
                return;

            case 12:
                this.readMeTitle = ((System.Windows.Controls.TextBlock)(target));
                return;

            case 13:
                this.gameBugsTitle = ((System.Windows.Controls.TextBlock)(target));
                return;

            case 14:
                this.gameAutorTitle = ((System.Windows.Controls.TextBlock)(target));
                return;

            case 15:
                this.autors = ((System.Windows.Controls.TextBox)(target));
                return;

            case 16:
                this.description = ((System.Windows.Controls.TextBox)(target));
                return;

            case 17:
                this.controls = ((System.Windows.Controls.ListBox)(target));
                return;

            case 18:
                this.features = ((System.Windows.Controls.ListBox)(target));
                return;

            case 19:
                this.bugs = ((System.Windows.Controls.ListBox)(target));
                return;

            case 20:
                this.btnAddToList = ((System.Windows.Controls.Button)(target));

            #line 38 "..\..\MainWindow.xaml"
                this.btnAddToList.Click += new System.Windows.RoutedEventHandler(this.btnAddToList_Click);

            #line default
            #line hidden
                return;

            case 21:
                this.btnDelToList = ((System.Windows.Controls.Button)(target));

            #line 39 "..\..\MainWindow.xaml"
                this.btnDelToList.Click += new System.Windows.RoutedEventHandler(this.BtnDelToList_Click);

            #line default
            #line hidden
                return;

            case 22:
                this.btnAddToFeat = ((System.Windows.Controls.Button)(target));

            #line 40 "..\..\MainWindow.xaml"
                this.btnAddToFeat.Click += new System.Windows.RoutedEventHandler(this.BtnAddToFeat_Click);

            #line default
            #line hidden
                return;

            case 23:
                this.btnDelToFeat = ((System.Windows.Controls.Button)(target));

            #line 41 "..\..\MainWindow.xaml"
                this.btnDelToFeat.Click += new System.Windows.RoutedEventHandler(this.BtnDelToFeat_Click);

            #line default
            #line hidden
                return;

            case 24:
                this.btnAddToBugs = ((System.Windows.Controls.Button)(target));

            #line 42 "..\..\MainWindow.xaml"
                this.btnAddToBugs.Click += new System.Windows.RoutedEventHandler(this.BtnAddToBugs_Click);

            #line default
            #line hidden
                return;

            case 25:
                this.btnDelToBugs = ((System.Windows.Controls.Button)(target));

            #line 43 "..\..\MainWindow.xaml"
                this.btnDelToBugs.Click += new System.Windows.RoutedEventHandler(this.BtnDelToBugs_Click);

            #line default
            #line hidden
                return;
            }
            this._contentLoaded = true;
        }
Example #38
0
        void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target)
        {
            switch (connectionId)
            {
            case 1:
                this.Check = ((System.Windows.Controls.Button)(target));

            #line 10 "..\..\MainWindow.xaml"
                this.Check.Click += new System.Windows.RoutedEventHandler(this.Check_Click);

            #line default
            #line hidden
                return;

            case 2:
                this.Exit = ((System.Windows.Controls.Button)(target));

            #line 11 "..\..\MainWindow.xaml"
                this.Exit.Click += new System.Windows.RoutedEventHandler(this.Exit_Click);

            #line default
            #line hidden
                return;

            case 3:
                this.SearsCheckBox = ((System.Windows.Controls.CheckBox)(target));
                return;

            case 4:
                this.GetFolder = ((System.Windows.Controls.Button)(target));

            #line 16 "..\..\MainWindow.xaml"
                this.GetFolder.Click += new System.Windows.RoutedEventHandler(this.GetFolder_Click);

            #line default
            #line hidden
                return;

            case 5:
                this.FolderTextBox = ((System.Windows.Controls.TextBox)(target));
                return;

            case 6:
                this.WallmartCheckBox = ((System.Windows.Controls.CheckBox)(target));
                return;

            case 7:
                this.TigerdirectCheckBox = ((System.Windows.Controls.CheckBox)(target));
                return;

            case 8:
                this.GetSource = ((System.Windows.Controls.Button)(target));

            #line 23 "..\..\MainWindow.xaml"
                this.GetSource.Click += new System.Windows.RoutedEventHandler(this.GetSource_Click);

            #line default
            #line hidden
                return;

            case 9:
                this.SourceTextBox = ((System.Windows.Controls.TextBox)(target));
                return;

            case 10:
                this.ProgressBar = ((System.Windows.Controls.ProgressBar)(target));
                return;

            case 11:
                this.GetUsers = ((System.Windows.Controls.Button)(target));

            #line 27 "..\..\MainWindow.xaml"
                this.GetUsers.Click += new System.Windows.RoutedEventHandler(this.GetUsers_Click);

            #line default
            #line hidden
                return;

            case 12:
                this.PaswordTextBox = ((System.Windows.Controls.TextBox)(target));
                return;

            case 13:
                this.LoginTextBox = ((System.Windows.Controls.TextBox)(target));
                return;

            case 14:
                this.OverstockCheckBox = ((System.Windows.Controls.CheckBox)(target));
                return;

            case 15:
                this.BestbuyCheckBox = ((System.Windows.Controls.CheckBox)(target));
                return;

            case 16:
                this.NeweggCheckBox = ((System.Windows.Controls.CheckBox)(target));
                return;

            case 17:
                this.ToysrusCheckBox = ((System.Windows.Controls.CheckBox)(target));
                return;
            }
            this._contentLoaded = true;
        }
Example #39
0
        void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target)
        {
            switch (connectionId)
            {
            case 1:
                this.ProfileImage = ((System.Windows.Controls.Image)(target));
                return;

            case 2:
                this.HoverLabel = ((LegendaryClient.Controls.HoverOverLabel)(target));
                return;

            case 3:
                this.SummonerNameLabel = ((System.Windows.Controls.Label)(target));
                return;

            case 4:
                this.PlayerProgressBar = ((System.Windows.Controls.ProgressBar)(target));
                return;

            case 5:
                this.PlayerCurrentProgressLabel = ((System.Windows.Controls.Label)(target));
                return;

            case 6:
                this.PlayerProgressLabel = ((System.Windows.Controls.Label)(target));
                return;

            case 7:
                this.PlayerAimProgressLabel = ((System.Windows.Controls.Label)(target));
                return;

            case 8:
                this.BroadcastMessage = ((System.Windows.Controls.TextBox)(target));
                return;

            case 9:
                this.SpectatorRegionGrid = ((System.Windows.Controls.Grid)(target));
                return;

            case 10:
                this.ImageGrid = ((System.Windows.Controls.Grid)(target));
                return;

            case 11:
                this.BlueListView = ((System.Windows.Controls.ListView)(target));
                return;

            case 12:
                this.BlueBansLabel = ((System.Windows.Controls.Label)(target));
                return;

            case 13:
                this.BlueBanListView = ((System.Windows.Controls.ListView)(target));
                return;

            case 14:
                this.SpectatorComboBox = ((System.Windows.Controls.ComboBox)(target));

            #line 124 "..\..\..\Windows\MainPage.xaml"
                this.SpectatorComboBox.SelectionChanged += new System.Windows.Controls.SelectionChangedEventHandler(this.SpectatorComboBox_SelectionChanged);

            #line default
            #line hidden
                return;

            case 15:
                this.MMRLabel = ((System.Windows.Controls.Label)(target));
                return;

            case 16:
                this.MapLabel = ((System.Windows.Controls.Label)(target));
                return;

            case 17:
                this.GameTimeLabel = ((System.Windows.Controls.Label)(target));
                return;

            case 18:
                this.PurpleBansLabel = ((System.Windows.Controls.Label)(target));
                return;

            case 19:
                this.PurpleBanListView = ((System.Windows.Controls.ListView)(target));
                return;

            case 20:
                this.PurpleListView = ((System.Windows.Controls.ListView)(target));
                return;

            case 21:
                this.PrevGameButton = ((System.Windows.Controls.Button)(target));

            #line 155 "..\..\..\Windows\MainPage.xaml"
                this.PrevGameButton.Click += new System.Windows.RoutedEventHandler(this.PrevGameButton_Click);

            #line default
            #line hidden
                return;

            case 22:
                this.SpectateButton = ((System.Windows.Controls.Button)(target));

            #line 159 "..\..\..\Windows\MainPage.xaml"
                this.SpectateButton.Click += new System.Windows.RoutedEventHandler(this.SpectateButton_Click);

            #line default
            #line hidden
                return;

            case 23:
                this.RecordButton = ((System.Windows.Controls.Button)(target));

            #line 162 "..\..\..\Windows\MainPage.xaml"
                this.RecordButton.Click += new System.Windows.RoutedEventHandler(this.RecordButton_Click);

            #line default
            #line hidden
                return;

            case 24:
                this.NextGameButton = ((System.Windows.Controls.Button)(target));

            #line 165 "..\..\..\Windows\MainPage.xaml"
                this.NextGameButton.Click += new System.Windows.RoutedEventHandler(this.NextGameButton_Click);

            #line default
            #line hidden
                return;

            case 25:
                this.NewsItemListView = ((System.Windows.Controls.ListView)(target));

            #line 172 "..\..\..\Windows\MainPage.xaml"
                this.NewsItemListView.SelectionChanged += new System.Windows.Controls.SelectionChangedEventHandler(this.NewsItemListView_SelectionChanged);

            #line default
            #line hidden
                return;

            case 26:
                this.fakeend = ((System.Windows.Controls.Button)(target));

            #line 184 "..\..\..\Windows\MainPage.xaml"
                this.fakeend.Click += new System.Windows.RoutedEventHandler(this.fakeend_Click);

            #line default
            #line hidden
                return;

            case 27:
                this.testInvite = ((System.Windows.Controls.Button)(target));

            #line 186 "..\..\..\Windows\MainPage.xaml"
                this.testInvite.Click += new System.Windows.RoutedEventHandler(this.InviteTest_Click);

            #line default
            #line hidden
                return;

            case 28:
                this.testChat = ((System.Windows.Controls.Button)(target));

            #line 188 "..\..\..\Windows\MainPage.xaml"
                this.testChat.Click += new System.Windows.RoutedEventHandler(this.ChatTest_Click);

            #line default
            #line hidden
                return;
            }
            this._contentLoaded = true;
        }
Example #40
0
        void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target)
        {
            switch (connectionId)
            {
            case 1:
                this.tabControl = ((System.Windows.Controls.TabControl)(target));

            #line 18 "..\..\MainWindow.xaml"
                this.tabControl.SelectionChanged += new System.Windows.Controls.SelectionChangedEventHandler(this.tabControl_SelectionChanged);

            #line default
            #line hidden
                return;

            case 2:
                this.label = ((System.Windows.Controls.Label)(target));
                return;

            case 3:
                this.label1 = ((System.Windows.Controls.Label)(target));
                return;

            case 4:
                this.button = ((System.Windows.Controls.Button)(target));

            #line 29 "..\..\MainWindow.xaml"
                this.button.Click += new System.Windows.RoutedEventHandler(this.button_Click_1);

            #line default
            #line hidden
                return;

            case 5:
                this.button1 = ((System.Windows.Controls.Button)(target));

            #line 30 "..\..\MainWindow.xaml"
                this.button1.Click += new System.Windows.RoutedEventHandler(this.button1_Click);

            #line default
            #line hidden
                return;

            case 6:
                this.button2 = ((System.Windows.Controls.Button)(target));

            #line 31 "..\..\MainWindow.xaml"
                this.button2.Click += new System.Windows.RoutedEventHandler(this.button2_Click);

            #line default
            #line hidden
                return;

            case 7:
                this.label6 = ((System.Windows.Controls.Label)(target));
                return;

            case 8:
                this.label7 = ((System.Windows.Controls.Label)(target));
                return;

            case 9:
                this.image = ((System.Windows.Controls.Image)(target));
                return;

            case 10:
                this.argo_png = ((System.Windows.Controls.Image)(target));
                return;

            case 11:
                this.button4 = ((System.Windows.Controls.Button)(target));

            #line 45 "..\..\MainWindow.xaml"
                this.button4.Click += new System.Windows.RoutedEventHandler(this.button4_Click);

            #line default
            #line hidden
                return;

            case 12:
                this.label2 = ((System.Windows.Controls.Label)(target));
                return;

            case 13:
                this.textBox = ((System.Windows.Controls.TextBox)(target));

            #line 48 "..\..\MainWindow.xaml"
                this.textBox.TextChanged += new System.Windows.Controls.TextChangedEventHandler(this.textBox_TextChanged);

            #line default
            #line hidden
                return;

            case 14:
                this.progressBar = ((System.Windows.Controls.ProgressBar)(target));
                return;

            case 15:
                this.label3 = ((System.Windows.Controls.Label)(target));
                return;

            case 16:
                this.button3 = ((System.Windows.Controls.Button)(target));

            #line 52 "..\..\MainWindow.xaml"
                this.button3.Click += new System.Windows.RoutedEventHandler(this.button3_Click);

            #line default
            #line hidden
                return;

            case 17:
                this.button5 = ((System.Windows.Controls.Button)(target));

            #line 53 "..\..\MainWindow.xaml"
                this.button5.Click += new System.Windows.RoutedEventHandler(this.button5_Click);

            #line default
            #line hidden
                return;

            case 18:
                this.label4 = ((System.Windows.Controls.Label)(target));
                return;

            case 19:
                this.label5 = ((System.Windows.Controls.Label)(target));
                return;

            case 20:
                this.button6 = ((System.Windows.Controls.Button)(target));

            #line 56 "..\..\MainWindow.xaml"
                this.button6.Click += new System.Windows.RoutedEventHandler(this.button6_Click);

            #line default
            #line hidden
                return;

            case 21:
                this.image1 = ((System.Windows.Controls.Image)(target));
                return;

            case 22:
                this.argo_png1 = ((System.Windows.Controls.Image)(target));
                return;
            }
            this._contentLoaded = true;
        }
Example #41
0
        void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target)
        {
            switch (connectionId)
            {
            case 1:

            #line 23 "..\..\MainWindow.xaml"
                ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.ChooseFile);

            #line default
            #line hidden
                return;

            case 2:
                this.FileName = ((System.Windows.Controls.TextBox)(target));
                return;

            case 3:
                this.Key128 = ((System.Windows.Controls.RadioButton)(target));
                return;

            case 4:
                this.Key192 = ((System.Windows.Controls.RadioButton)(target));
                return;

            case 5:
                this.Key256 = ((System.Windows.Controls.RadioButton)(target));
                return;

            case 6:
                this.Key = ((System.Windows.Controls.TextBox)(target));
                return;

            case 7:
                this.IV = ((System.Windows.Controls.TextBox)(target));
                return;

            case 8:

            #line 49 "..\..\MainWindow.xaml"
                ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.Decrypt);

            #line default
            #line hidden
                return;

            case 9:

            #line 51 "..\..\MainWindow.xaml"
                ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.Encode);

            #line default
            #line hidden
                return;

            case 10:
                this.pbStatus = ((System.Windows.Controls.ProgressBar)(target));
                return;
            }
            this._contentLoaded = true;
        }
Example #42
0
        void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target)
        {
            switch (connectionId)
            {
            case 1:
                this.ProcessesList = ((System.Windows.Controls.ListView)(target));

            #line 23 "..\..\MainWindow.xaml"
                this.ProcessesList.AddHandler(System.Windows.Controls.Primitives.ButtonBase.ClickEvent, new System.Windows.RoutedEventHandler(this.GridViewColumnHeaderClickedHandler));

            #line default
            #line hidden

            #line 23 "..\..\MainWindow.xaml"
                this.ProcessesList.MouseDoubleClick += new System.Windows.Input.MouseButtonEventHandler(this.GetSelectedProcess);

            #line default
            #line hidden
                return;

            case 2:
                this.FilterTextGrid = ((System.Windows.Controls.Grid)(target));
                return;

            case 3:
                this.FilterName_TextBox = ((System.Windows.Controls.TextBox)(target));
                return;

            case 4:
                this.TimeoutProcess_TextBox = ((System.Windows.Controls.TextBox)(target));
                return;

            case 5:
                this.StartProcess_Btn = ((System.Windows.Controls.Button)(target));

            #line 58 "..\..\MainWindow.xaml"
                this.StartProcess_Btn.Click += new System.Windows.RoutedEventHandler(this.StartProcess_Btn_OnClick);

            #line default
            #line hidden
                return;

            case 6:
                this.Process_PB = ((System.Windows.Controls.ProgressBar)(target));
                return;

            case 7:
                this.KillProcess_Btn = ((System.Windows.Controls.Button)(target));

            #line 110 "..\..\MainWindow.xaml"
                this.KillProcess_Btn.Click += new System.Windows.RoutedEventHandler(this.KillProcess_OnClick);

            #line default
            #line hidden
                return;

            case 8:
                this.Priorities = ((System.Windows.Controls.ComboBox)(target));
                return;

            case 9:
                this.ChangePriority_Btn = ((System.Windows.Controls.Button)(target));

            #line 112 "..\..\MainWindow.xaml"
                this.ChangePriority_Btn.Click += new System.Windows.RoutedEventHandler(this.ChangePriority_OnClick);

            #line default
            #line hidden
                return;
            }
            this._contentLoaded = true;
        }
Example #43
0
        void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target)
        {
            switch (connectionId)
            {
            case 1:

            #line 12 "..\..\..\MainApp\SellerWindow.xaml"
                ((ECommerce_GUI.MainApp.SellerWindow)(target)).Loaded += new System.Windows.RoutedEventHandler(this.Window_Loaded);

            #line default
            #line hidden
                return;

            case 2:
                this.tileBar = ((System.Windows.Controls.Grid)(target));

            #line 28 "..\..\..\MainApp\SellerWindow.xaml"
                this.tileBar.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.tileBar_MouseDown);

            #line default
            #line hidden
                return;

            case 3:
                this.customerChannel = ((System.Windows.Controls.Button)(target));

            #line 41 "..\..\..\MainApp\SellerWindow.xaml"
                this.customerChannel.Click += new System.Windows.RoutedEventHandler(this.customerChannel_Click);

            #line default
            #line hidden
                return;

            case 4:
                this.refresh = ((System.Windows.Controls.Button)(target));

            #line 49 "..\..\..\MainApp\SellerWindow.xaml"
                this.refresh.Click += new System.Windows.RoutedEventHandler(this.refresh_Click);

            #line default
            #line hidden
                return;

            case 5:
                this.waitting = ((System.Windows.Controls.ProgressBar)(target));
                return;

            case 6:
                this.closeBtn = ((System.Windows.Controls.Button)(target));

            #line 70 "..\..\..\MainApp\SellerWindow.xaml"
                this.closeBtn.Click += new System.Windows.RoutedEventHandler(this.closeBtn_Click);

            #line default
            #line hidden
                return;

            case 7:
                this.minimizeBtn = ((System.Windows.Controls.Button)(target));

            #line 83 "..\..\..\MainApp\SellerWindow.xaml"
                this.minimizeBtn.Click += new System.Windows.RoutedEventHandler(this.minimizeBtn_Click);

            #line default
            #line hidden
                return;

            case 8:
                this.shop = ((System.Windows.Controls.Button)(target));

            #line 131 "..\..\..\MainApp\SellerWindow.xaml"
                this.shop.Click += new System.Windows.RoutedEventHandler(this.shop_Click);

            #line default
            #line hidden
                return;

            case 9:
                this.addShop = ((System.Windows.Controls.Button)(target));

            #line 138 "..\..\..\MainApp\SellerWindow.xaml"
                this.addShop.Click += new System.Windows.RoutedEventHandler(this.addShop_Click);

            #line default
            #line hidden
                return;

            case 10:
                this.addProduct = ((System.Windows.Controls.Button)(target));

            #line 146 "..\..\..\MainApp\SellerWindow.xaml"
                this.addProduct.Click += new System.Windows.RoutedEventHandler(this.addProduct_Click);

            #line default
            #line hidden
                return;

            case 11:
                this.totalSales = ((System.Windows.Controls.Button)(target));

            #line 176 "..\..\..\MainApp\SellerWindow.xaml"
                this.totalSales.Click += new System.Windows.RoutedEventHandler(this.totalSales_Click);

            #line default
            #line hidden
                return;

            case 12:
                this.controlGrid = ((System.Windows.Controls.Grid)(target));
                return;

            case 13:
                this.shopGrid = ((System.Windows.Controls.Grid)(target));
                return;

            case 14:
                this.moneyGrid = ((System.Windows.Controls.Grid)(target));
                return;
            }
            this._contentLoaded = true;
        }
Example #44
0
        void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target)
        {
            switch (connectionId)
            {
            case 1:
                this.objform = ((GramDominator.Classes.Validation)(target));
                return;

            case 2:
                this.Name_follow = ((System.Windows.Controls.Label)(target));
                return;

            case 3:
                this.txt_followerUser = ((System.Windows.Controls.TextBox)(target));
                return;

            case 4:
                this.follower_browser = ((System.Windows.Controls.Button)(target));

            #line 48 "..\..\..\..\Pages\PageFollower\UserControlFollower.xaml"
                this.follower_browser.Click += new System.Windows.RoutedEventHandler(this.follower_browser_Click);

            #line default
            #line hidden
                return;

            case 5:
                this.rdo_SingleUser_follower = ((System.Windows.Controls.RadioButton)(target));

            #line 57 "..\..\..\..\Pages\PageFollower\UserControlFollower.xaml"
                this.rdo_SingleUser_follower.Checked += new System.Windows.RoutedEventHandler(this.rdo_FollowInput_SingleFollow_Checked);

            #line default
            #line hidden
                return;

            case 6:
                this.rdo_MultipleUser_follower = ((System.Windows.Controls.RadioButton)(target));

            #line 58 "..\..\..\..\Pages\PageFollower\UserControlFollower.xaml"
                this.rdo_MultipleUser_follower.Checked += new System.Windows.RoutedEventHandler(this.rdo_FollowInput_MultipleFollow_Checked);

            #line default
            #line hidden
                return;

            case 7:
                this.chk_DontSendRequest_Follower = ((System.Windows.Controls.CheckBox)(target));

            #line 59 "..\..\..\..\Pages\PageFollower\UserControlFollower.xaml"
                this.chk_DontSendRequest_Follower.Checked += new System.Windows.RoutedEventHandler(this.chk_DontSendRequest_Follower_Checked);

            #line default
            #line hidden
                return;

            case 8:
                this.txtMessage_follower_NoOfThreads = ((System.Windows.Controls.TextBox)(target));
                return;

            case 9:
                this.txtMessage_follower_DelayMin = ((System.Windows.Controls.TextBox)(target));
                return;

            case 10:
                this.txtMessage_follower_DelayMax = ((System.Windows.Controls.TextBox)(target));
                return;

            case 11:
                this.txtNo_Follower = ((System.Windows.Controls.TextBox)(target));
                return;

            case 12:
                this.btnMessage_follower_Start = ((System.Windows.Controls.Button)(target));

            #line 105 "..\..\..\..\Pages\PageFollower\UserControlFollower.xaml"
                this.btnMessage_follower_Start.Click += new System.Windows.RoutedEventHandler(this.btnMessage_follower_Start_Click);

            #line default
            #line hidden
                return;

            case 13:
                this.btnMessage_follower_Stop = ((System.Windows.Controls.Button)(target));

            #line 114 "..\..\..\..\Pages\PageFollower\UserControlFollower.xaml"
                this.btnMessage_follower_Stop.Click += new System.Windows.RoutedEventHandler(this.btnMessage_follower_Stop_Click);

            #line default
            #line hidden
                return;

            case 14:
                this.btnMessage_follower_Start_Copy = ((System.Windows.Controls.Button)(target));

            #line 123 "..\..\..\..\Pages\PageFollower\UserControlFollower.xaml"
                this.btnMessage_follower_Start_Copy.Click += new System.Windows.RoutedEventHandler(this.btnMessage_Clear_click);

            #line default
            #line hidden
                return;

            case 15:
                this.followprogress = ((System.Windows.Controls.ProgressBar)(target));
                return;

            case 16:
                this.dtGrdMessage_follower_AccountsReport = ((System.Windows.Controls.DataGrid)(target));
                return;

            case 17:

            #line 149 "..\..\..\..\Pages\PageFollower\UserControlFollower.xaml"
                ((System.Windows.Controls.MenuItem)(target)).Click += new System.Windows.RoutedEventHandler(this.refreshAccountrepot_follow_Click);

            #line default
            #line hidden
                return;

            case 18:

            #line 150 "..\..\..\..\Pages\PageFollower\UserControlFollower.xaml"
                ((System.Windows.Controls.MenuItem)(target)).Click += new System.Windows.RoutedEventHandler(this.DeleteAccountrepot_follow_Click);

            #line default
            #line hidden
                return;

            case 19:

            #line 151 "..\..\..\..\Pages\PageFollower\UserControlFollower.xaml"
                ((System.Windows.Controls.MenuItem)(target)).Click += new System.Windows.RoutedEventHandler(this.ExportAccountreport_follow_Click);

            #line default
            #line hidden
                return;
            }
            this._contentLoaded = true;
        }
Example #45
0
 void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) {
     switch (connectionId)
     {
     case 1:
     this.Form1 = ((Parser.MainWindow)(target));
     return;
     case 2:
     this.textBox1 = ((System.Windows.Controls.TextBox)(target));
     return;
     case 3:
     this.textBox2 = ((System.Windows.Controls.TextBox)(target));
     return;
     case 4:
     this.textBox3 = ((System.Windows.Controls.TextBox)(target));
     return;
     case 5:
     this.textBox4 = ((System.Windows.Controls.TextBox)(target));
     return;
     case 6:
     this.progressBar1 = ((System.Windows.Controls.ProgressBar)(target));
     return;
     case 7:
     this.label6 = ((System.Windows.Controls.Label)(target));
     return;
     case 8:
     this.label7 = ((System.Windows.Controls.Label)(target));
     return;
     case 9:
     this.label2 = ((System.Windows.Controls.Label)(target));
     return;
     case 10:
     this.label4 = ((System.Windows.Controls.Label)(target));
     return;
     case 11:
     this.label3 = ((System.Windows.Controls.Label)(target));
     return;
     case 12:
     this.label5 = ((System.Windows.Controls.Label)(target));
     return;
     case 13:
     this.textBox5 = ((System.Windows.Controls.TextBox)(target));
     return;
     case 14:
     this.label8 = ((System.Windows.Controls.Label)(target));
     return;
     case 15:
     this.menuItem1 = ((System.Windows.Controls.MenuItem)(target));
     
     #line 24 "..\..\MainWindow.xaml"
     this.menuItem1.Click += new System.Windows.RoutedEventHandler(this.MenuItem1_Click);
     
     #line default
     #line hidden
     return;
     case 16:
     this.menuItem2 = ((System.Windows.Controls.MenuItem)(target));
     
     #line 25 "..\..\MainWindow.xaml"
     this.menuItem2.Click += new System.Windows.RoutedEventHandler(this.MenuItem2_Click);
     
     #line default
     #line hidden
     return;
     case 17:
     this.checkBox3 = ((System.Windows.Controls.CheckBox)(target));
     
     #line 27 "..\..\MainWindow.xaml"
     this.checkBox3.Checked += new System.Windows.RoutedEventHandler(this.checkBox3_Checked);
     
     #line default
     #line hidden
     
     #line 27 "..\..\MainWindow.xaml"
     this.checkBox3.Unchecked += new System.Windows.RoutedEventHandler(this.checkBox3_Unchecked);
     
     #line default
     #line hidden
     return;
     case 18:
     this.checkBox1 = ((System.Windows.Controls.CheckBox)(target));
     
     #line 28 "..\..\MainWindow.xaml"
     this.checkBox1.Checked += new System.Windows.RoutedEventHandler(this.checkBox1_Checked);
     
     #line default
     #line hidden
     
     #line 28 "..\..\MainWindow.xaml"
     this.checkBox1.Unchecked += new System.Windows.RoutedEventHandler(this.checkBox1_Unchecked);
     
     #line default
     #line hidden
     return;
     case 19:
     this.checkBox2 = ((System.Windows.Controls.CheckBox)(target));
     
     #line 29 "..\..\MainWindow.xaml"
     this.checkBox2.Checked += new System.Windows.RoutedEventHandler(this.checkBox2_Checked);
     
     #line default
     #line hidden
     
     #line 29 "..\..\MainWindow.xaml"
     this.checkBox2.Unchecked += new System.Windows.RoutedEventHandler(this.checkBox2_Unchecked);
     
     #line default
     #line hidden
     return;
     case 20:
     this.checkBox4 = ((System.Windows.Controls.CheckBox)(target));
     
     #line 30 "..\..\MainWindow.xaml"
     this.checkBox4.Checked += new System.Windows.RoutedEventHandler(this.checkBox4_Checked);
     
     #line default
     #line hidden
     
     #line 30 "..\..\MainWindow.xaml"
     this.checkBox4.Unchecked += new System.Windows.RoutedEventHandler(this.checkBox4_Unchecked);
     
     #line default
     #line hidden
     return;
     case 21:
     this.textBox6 = ((System.Windows.Controls.TextBox)(target));
     return;
     case 22:
     this.label9 = ((System.Windows.Controls.Label)(target));
     return;
     case 23:
     this.textBox7 = ((System.Windows.Controls.TextBox)(target));
     return;
     case 24:
     this.button2 = ((System.Windows.Controls.Button)(target));
     
     #line 34 "..\..\MainWindow.xaml"
     this.button2.Click += new System.Windows.RoutedEventHandler(this.Button_Click);
     
     #line default
     #line hidden
     return;
     case 25:
     this.button1 = ((System.Windows.Controls.Button)(target));
     
     #line 35 "..\..\MainWindow.xaml"
     this.button1.Click += new System.Windows.RoutedEventHandler(this.Button1_Click);
     
     #line default
     #line hidden
     return;
     case 26:
     this.listView1 = ((System.Windows.Controls.ListView)(target));
     return;
     case 27:
     this.listView2 = ((System.Windows.Controls.ListView)(target));
     return;
     }
     this._contentLoaded = true;
 }
Example #46
0
        void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target)
        {
            switch (connectionId)
            {
            case 1:

            #line 8 "..\..\MainWindow.xaml"
                ((Autoexport.MainWindow)(target)).Loaded += new System.Windows.RoutedEventHandler(this.Window_Loaded);

            #line default
            #line hidden
                return;

            case 2:
                this.label1 = ((System.Windows.Controls.Label)(target));
                return;

            case 3:
                this.label2 = ((System.Windows.Controls.Label)(target));
                return;

            case 4:
                this.label1_Copy = ((System.Windows.Controls.Label)(target));
                return;

            case 5:
                this.button1 = ((System.Windows.Controls.Button)(target));

            #line 13 "..\..\MainWindow.xaml"
                this.button1.Click += new System.Windows.RoutedEventHandler(this.button1_Click);

            #line default
            #line hidden
                return;

            case 6:
                this.button2 = ((System.Windows.Controls.Button)(target));

            #line 14 "..\..\MainWindow.xaml"
                this.button2.Click += new System.Windows.RoutedEventHandler(this.button2_Click);

            #line default
            #line hidden
                return;

            case 7:
                this.button3 = ((System.Windows.Controls.Button)(target));

            #line 15 "..\..\MainWindow.xaml"
                this.button3.Click += new System.Windows.RoutedEventHandler(this.button3_Click);

            #line default
            #line hidden
                return;

            case 8:
                this.textBox1 = ((System.Windows.Controls.TextBox)(target));
                return;

            case 9:
                this.textBox2 = ((System.Windows.Controls.TextBox)(target));
                return;

            case 10:
                this.groupBox = ((System.Windows.Controls.GroupBox)(target));
                return;

            case 11:
                this.listBox1 = ((System.Windows.Controls.ListBox)(target));
                return;

            case 12:
                this.ProgressBar1 = ((System.Windows.Controls.ProgressBar)(target));
                return;

            case 13:
                this.textBlock = ((System.Windows.Controls.TextBlock)(target));
                return;
            }
            this._contentLoaded = true;
        }
Example #47
0
        void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target)
        {
            switch (connectionId)
            {
            case 1:
                this.createOrdersScreen = ((System.Windows.Controls.Grid)(target));
                return;

            case 2:

            #line 39 "..\..\..\Orders\EditOrdersScreen.xaml"
                ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.backWard_Click);

            #line default
            #line hidden
                return;

            case 3:
                this.Title = ((System.Windows.Controls.Label)(target));
                return;

            case 4:
                this.CustomerNameTextBox = ((System.Windows.Controls.TextBox)(target));
                return;

            case 5:
                this.customerPhoneTextBox = ((System.Windows.Controls.TextBox)(target));

            #line 89 "..\..\..\Orders\EditOrdersScreen.xaml"
                this.customerPhoneTextBox.PreviewTextInput += new System.Windows.Input.TextCompositionEventHandler(this.NumberOnly_PreviewTextInput);

            #line default
            #line hidden

            #line 93 "..\..\..\Orders\EditOrdersScreen.xaml"
                this.customerPhoneTextBox.TextChanged += new System.Windows.Controls.TextChangedEventHandler(this.customerPhoneTextBox_TextChanged);

            #line default
            #line hidden
                return;

            case 6:
                this.editProductId = ((System.Windows.Controls.TextBox)(target));

            #line 105 "..\..\..\Orders\EditOrdersScreen.xaml"
                this.editProductId.PreviewMouseUp += new System.Windows.Input.MouseButtonEventHandler(this.selectProductId_MouseUp);

            #line default
            #line hidden
                return;

            case 7:
                this.statusFilterComboBox = ((System.Windows.Controls.ComboBox)(target));

            #line 123 "..\..\..\Orders\EditOrdersScreen.xaml"
                this.statusFilterComboBox.DropDownOpened += new System.EventHandler(this.ComboFilter_DropDownOpened);

            #line default
            #line hidden

            #line 124 "..\..\..\Orders\EditOrdersScreen.xaml"
                this.statusFilterComboBox.DropDownClosed += new System.EventHandler(this.ComboFilter_DropDownClosed);

            #line default
            #line hidden
                return;

            case 8:
                this.numberBuyTextBox = ((System.Windows.Controls.TextBox)(target));

            #line 143 "..\..\..\Orders\EditOrdersScreen.xaml"
                this.numberBuyTextBox.TextChanged += new System.Windows.Controls.TextChangedEventHandler(this.NumberBuy_TextChanged);

            #line default
            #line hidden

            #line 144 "..\..\..\Orders\EditOrdersScreen.xaml"
                this.numberBuyTextBox.PreviewTextInput += new System.Windows.Input.TextCompositionEventHandler(this.NumberOnly_PreviewTextInput);

            #line default
            #line hidden
                return;

            case 9:
                this.totalTextBox = ((System.Windows.Controls.TextBox)(target));

            #line 159 "..\..\..\Orders\EditOrdersScreen.xaml"
                this.totalTextBox.PreviewTextInput += new System.Windows.Input.TextCompositionEventHandler(this.NumberOnly_PreviewTextInput);

            #line default
            #line hidden
                return;

            case 10:
                this.originalPriceTextbox = ((System.Windows.Controls.TextBox)(target));

            #line 174 "..\..\..\Orders\EditOrdersScreen.xaml"
                this.originalPriceTextbox.PreviewTextInput += new System.Windows.Input.TextCompositionEventHandler(this.NumberOnly_PreviewTextInput);

            #line default
            #line hidden
                return;

            case 11:
                this.sellPriceTextBox = ((System.Windows.Controls.TextBox)(target));

            #line 195 "..\..\..\Orders\EditOrdersScreen.xaml"
                this.sellPriceTextBox.PreviewTextInput += new System.Windows.Input.TextCompositionEventHandler(this.NumberOnly_PreviewTextInput);

            #line default
            #line hidden
                return;

            case 12:
                this.btnAddToListProduct = ((System.Windows.Controls.Button)(target));

            #line 220 "..\..\..\Orders\EditOrdersScreen.xaml"
                this.btnAddToListProduct.Click += new System.Windows.RoutedEventHandler(this.btnAddToListProduct_Click);

            #line default
            #line hidden
                return;

            case 13:
                this.listProducts = ((System.Windows.Controls.ListView)(target));

            #line 238 "..\..\..\Orders\EditOrdersScreen.xaml"
                this.listProducts.PreviewMouseLeftButtonUp += new System.Windows.Input.MouseButtonEventHandler(this.ListProducts_PreviewMouseLeftButtonUp);

            #line default
            #line hidden
                return;

            case 14:
                this.sumTotalOfProduct = ((System.Windows.Controls.TextBlock)(target));
                return;

            case 15:
                this.btncancel = ((System.Windows.Controls.Button)(target));

            #line 380 "..\..\..\Orders\EditOrdersScreen.xaml"
                this.btncancel.Click += new System.Windows.RoutedEventHandler(this.btncancel_Click);

            #line default
            #line hidden
                return;

            case 16:
                this.ProgressBar = ((System.Windows.Controls.ProgressBar)(target));
                return;

            case 17:
                this.rdoGoToShop = ((System.Windows.Controls.RadioButton)(target));

            #line 396 "..\..\..\Orders\EditOrdersScreen.xaml"
                this.rdoGoToShop.Checked += new System.Windows.RoutedEventHandler(this.Radio_Checked);

            #line default
            #line hidden
                return;

            case 18:
                this.rdoShip = ((System.Windows.Controls.RadioButton)(target));

            #line 406 "..\..\..\Orders\EditOrdersScreen.xaml"
                this.rdoShip.Checked += new System.Windows.RoutedEventHandler(this.Radio_Checked);

            #line default
            #line hidden
                return;

            case 19:
                this.editMoneyTaken = ((System.Windows.Controls.TextBox)(target));

            #line 417 "..\..\..\Orders\EditOrdersScreen.xaml"
                this.editMoneyTaken.PreviewTextInput += new System.Windows.Input.TextCompositionEventHandler(this.NumberOnly_PreviewTextInput);

            #line default
            #line hidden

            #line 422 "..\..\..\Orders\EditOrdersScreen.xaml"
                this.editMoneyTaken.TextChanged += new System.Windows.Controls.TextChangedEventHandler(this.CountExchange);

            #line default
            #line hidden
                return;

            case 20:
                this.editMoneyExchange = ((System.Windows.Controls.TextBox)(target));

            #line 439 "..\..\..\Orders\EditOrdersScreen.xaml"
                this.editMoneyExchange.PreviewTextInput += new System.Windows.Input.TextCompositionEventHandler(this.NumberOnly_PreviewTextInput);

            #line default
            #line hidden
                return;

            case 21:
                this.editAddress = ((System.Windows.Controls.TextBox)(target));
                return;

            case 22:
                this.editDeposit = ((System.Windows.Controls.TextBox)(target));

            #line 470 "..\..\..\Orders\EditOrdersScreen.xaml"
                this.editDeposit.TextChanged += new System.Windows.Controls.TextChangedEventHandler(this.CountMoneyWillGet);

            #line default
            #line hidden

            #line 471 "..\..\..\Orders\EditOrdersScreen.xaml"
                this.editDeposit.PreviewTextInput += new System.Windows.Input.TextCompositionEventHandler(this.NumberOnly_PreviewTextInput);

            #line default
            #line hidden
                return;

            case 23:
                this.editShipCost = ((System.Windows.Controls.TextBox)(target));

            #line 492 "..\..\..\Orders\EditOrdersScreen.xaml"
                this.editShipCost.TextChanged += new System.Windows.Controls.TextChangedEventHandler(this.CountMoneyWillGet);

            #line default
            #line hidden

            #line 493 "..\..\..\Orders\EditOrdersScreen.xaml"
                this.editShipCost.PreviewTextInput += new System.Windows.Input.TextCompositionEventHandler(this.NumberOnly_PreviewTextInput);

            #line default
            #line hidden
                return;

            case 24:
                this.editMoneyWillGet = ((System.Windows.Controls.TextBox)(target));

            #line 514 "..\..\..\Orders\EditOrdersScreen.xaml"
                this.editMoneyWillGet.PreviewTextInput += new System.Windows.Input.TextCompositionEventHandler(this.NumberOnly_PreviewTextInput);

            #line default
            #line hidden
                return;

            case 25:
                this.btnConfirm = ((System.Windows.Controls.Button)(target));

            #line 544 "..\..\..\Orders\EditOrdersScreen.xaml"
                this.btnConfirm.Click += new System.Windows.RoutedEventHandler(this.BtnConfirm_Click);

            #line default
            #line hidden
                return;

            case 26:
                this.btnRefresh = ((System.Windows.Controls.Button)(target));

            #line 559 "..\..\..\Orders\EditOrdersScreen.xaml"
                this.btnRefresh.Click += new System.Windows.RoutedEventHandler(this.BtnRefresh_Click);

            #line default
            #line hidden
                return;
            }
            this._contentLoaded = true;
        }
Example #48
0
        void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target)
        {
            switch (connectionId)
            {
            case 1:

            #line 4 "..\..\..\ExportStatistics.xaml"
                ((ScreenRecordPlusChrome.ExportStatistics)(target)).Closed += new System.EventHandler(this.Window_Closed);

            #line default
            #line hidden
                return;

            case 2:
                this.tb_exportStatistics_saveFolder = ((System.Windows.Controls.TextBox)(target));
                return;

            case 3:
                this.bt_exportStatistics_browser = ((System.Windows.Controls.Button)(target));

            #line 11 "..\..\..\ExportStatistics.xaml"
                this.bt_exportStatistics_browser.Click += new System.Windows.RoutedEventHandler(this.bt_exportStatistics_browser_Click);

            #line default
            #line hidden
                return;

            case 4:
                this.cb_exportStatistics_merge = ((System.Windows.Controls.CheckBox)(target));

            #line 14 "..\..\..\ExportStatistics.xaml"
                this.cb_exportStatistics_merge.Click += new System.Windows.RoutedEventHandler(this.cb_exportStatistics_merge_Click);

            #line default
            #line hidden
                return;

            case 5:
                this.pb_exportStatistics_processbar = ((System.Windows.Controls.ProgressBar)(target));
                return;

            case 6:
                this.tooltip_exportStatistics_processbar = ((System.Windows.Controls.TextBlock)(target));
                return;

            case 7:
                this.bt_exportStatistics_export = ((System.Windows.Controls.Button)(target));

            #line 21 "..\..\..\ExportStatistics.xaml"
                this.bt_exportStatistics_export.Click += new System.Windows.RoutedEventHandler(this.bt_exportStatistics_export_Click);

            #line default
            #line hidden
                return;

            case 8:
                this.bt_exportStatistics_cancel = ((System.Windows.Controls.Button)(target));

            #line 22 "..\..\..\ExportStatistics.xaml"
                this.bt_exportStatistics_cancel.Click += new System.Windows.RoutedEventHandler(this.bt_exportStatistics_cancel_Click);

            #line default
            #line hidden
                return;
            }
            this._contentLoaded = true;
        }
Example #49
0
        void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target)
        {
            switch (connectionId)
            {
            case 1:
                this.cbActive = ((System.Windows.Controls.CheckBox)(target));
                return;

            case 2:
                this.cbActive2 = ((System.Windows.Controls.CheckBox)(target));
                return;

            case 3:
                this.pro6 = ((System.Windows.Controls.ProgressBar)(target));
                return;

            case 4:
                this.pro1 = ((System.Windows.Controls.ProgressBar)(target));
                return;

            case 5:
                this.pro2 = ((System.Windows.Controls.ProgressBar)(target));
                return;

            case 6:
                this.pro3 = ((System.Windows.Controls.ProgressBar)(target));
                return;

            case 7:

            #line 38 "..\..\..\..\Page\Page_Waiting.xaml"
                ((Util.Controls.FButton)(target)).Click += new System.Windows.RoutedEventHandler(this.FButton_Click);

            #line default
            #line hidden
                return;

            case 8:

            #line 39 "..\..\..\..\Page\Page_Waiting.xaml"
                ((Util.Controls.FButton)(target)).Click += new System.Windows.RoutedEventHandler(this.FButton1_Click);

            #line default
            #line hidden
                return;

            case 9:

            #line 40 "..\..\..\..\Page\Page_Waiting.xaml"
                ((Util.Controls.FButton)(target)).Click += new System.Windows.RoutedEventHandler(this.FButton_Click_1);

            #line default
            #line hidden
                return;

            case 10:
                this.pro4 = ((System.Windows.Controls.ProgressBar)(target));
                return;

            case 11:
                this.pro5 = ((System.Windows.Controls.ProgressBar)(target));
                return;

            case 12:
                this.proValue = ((System.Windows.Controls.TextBlock)(target));
                return;
            }
            this._contentLoaded = true;
        }
Example #50
0
 public void InitializeComponent()
 {
     if (_contentLoaded)
     {
         return;
     }
     _contentLoaded = true;
     System.Windows.Application.LoadComponent(this, new System.Uri("/Galatee.Silverlight;component/Accueil/FrmValidationModificationClient.xaml", System.UriKind.Relative));
     this.LayoutRoot             = ((System.Windows.Controls.Grid)(this.FindName("LayoutRoot")));
     this.gbo_typefact_Cop       = ((SilverlightContrib.Controls.GroupBox)(this.FindName("gbo_typefact_Cop")));
     this.gbo_typefact_Cy        = ((SilverlightContrib.Controls.GroupBox)(this.FindName("gbo_typefact_Cy")));
     this.CancelButton           = ((System.Windows.Controls.Button)(this.FindName("CancelButton")));
     this.OKButton               = ((System.Windows.Controls.Button)(this.FindName("OKButton")));
     this.gbo_typefact_Copy1     = ((SilverlightContrib.Controls.GroupBox)(this.FindName("gbo_typefact_Copy1")));
     this.lbl_Centre             = ((System.Windows.Controls.Label)(this.FindName("lbl_Centre")));
     this.lbl_produit            = ((System.Windows.Controls.Label)(this.FindName("lbl_produit")));
     this.Txt_CodeCentre         = ((System.Windows.Controls.TextBox)(this.FindName("Txt_CodeCentre")));
     this.Txt_LibelleCentre      = ((System.Windows.Controls.TextBox)(this.FindName("Txt_LibelleCentre")));
     this.Txt_CodeProduit        = ((System.Windows.Controls.TextBox)(this.FindName("Txt_CodeProduit")));
     this.Txt_LibelleProduit     = ((System.Windows.Controls.TextBox)(this.FindName("Txt_LibelleProduit")));
     this.Txt_NumDemande         = ((System.Windows.Controls.TextBox)(this.FindName("Txt_NumDemande")));
     this.lbl_numdemande         = ((System.Windows.Controls.Label)(this.FindName("lbl_numdemande")));
     this.Txt_Client             = ((System.Windows.Controls.TextBox)(this.FindName("Txt_Client")));
     this.lbl_Client             = ((System.Windows.Controls.Label)(this.FindName("lbl_Client")));
     this.Txt_Ordre              = ((System.Windows.Controls.TextBox)(this.FindName("Txt_Ordre")));
     this.lbl_Ordre              = ((System.Windows.Controls.Label)(this.FindName("lbl_Ordre")));
     this.Btn_Rejeter            = ((System.Windows.Controls.Button)(this.FindName("Btn_Rejeter")));
     this.Gbo_PieceJointe        = ((SilverlightContrib.Controls.GroupBox)(this.FindName("Gbo_PieceJointe")));
     this.dgListePiece           = ((System.Windows.Controls.DataGrid)(this.FindName("dgListePiece")));
     this.btn_ajoutpiece         = ((System.Windows.Controls.Button)(this.FindName("btn_ajoutpiece")));
     this.btn_supprimerpiece     = ((System.Windows.Controls.Button)(this.FindName("btn_supprimerpiece")));
     this.cbo_typedoc            = ((System.Windows.Controls.ComboBox)(this.FindName("cbo_typedoc")));
     this.Txt_NomClientAbon      = ((System.Windows.Controls.TextBox)(this.FindName("Txt_NomClientAbon")));
     this.lbl_Nom                = ((System.Windows.Controls.Label)(this.FindName("lbl_Nom")));
     this.Txt_telephone          = ((System.Windows.Controls.TextBox)(this.FindName("Txt_telephone")));
     this.lbl_Telephone          = ((System.Windows.Controls.Label)(this.FindName("lbl_Telephone")));
     this.Txt_Addresse1          = ((System.Windows.Controls.TextBox)(this.FindName("Txt_Addresse1")));
     this.Txt_adresse2           = ((System.Windows.Controls.TextBox)(this.FindName("Txt_adresse2")));
     this.Txt_CodeConsomateur    = ((System.Windows.Controls.TextBox)(this.FindName("Txt_CodeConsomateur")));
     this.lbl_CodeConsomateur    = ((System.Windows.Controls.Label)(this.FindName("lbl_CodeConsomateur")));
     this.Txt_CodeFermableClient = ((System.Windows.Controls.TextBox)(this.FindName("Txt_CodeFermableClient")));
     this.lbl_CodeRelance        = ((System.Windows.Controls.Label)(this.FindName("lbl_CodeRelance")));
     this.Txt_CodeCategorie      = ((System.Windows.Controls.TextBox)(this.FindName("Txt_CodeCategorie")));
     this.lbl_categoie           = ((System.Windows.Controls.Label)(this.FindName("lbl_categoie")));
     this.Txt_LibelleCodeConso   = ((System.Windows.Controls.TextBox)(this.FindName("Txt_LibelleCodeConso")));
     this.Txt_LibelleFermable    = ((System.Windows.Controls.TextBox)(this.FindName("Txt_LibelleFermable")));
     this.Txt_LibelleCategorie   = ((System.Windows.Controls.TextBox)(this.FindName("Txt_LibelleCategorie")));
     this.Txt_CodeRegroupement   = ((System.Windows.Controls.TextBox)(this.FindName("Txt_CodeRegroupement")));
     this.lbl_CodeRegroupement   = ((System.Windows.Controls.Label)(this.FindName("lbl_CodeRegroupement")));
     this.Txt_CodeNationalite    = ((System.Windows.Controls.TextBox)(this.FindName("Txt_CodeNationalite")));
     this.lbl_Nationnalite       = ((System.Windows.Controls.Label)(this.FindName("lbl_Nationnalite")));
     this.Txt_LibelleGroupeCode  = ((System.Windows.Controls.TextBox)(this.FindName("Txt_LibelleGroupeCode")));
     this.Txt_Nationnalite       = ((System.Windows.Controls.TextBox)(this.FindName("Txt_Nationnalite")));
     this.Txt_Identifiant        = ((System.Windows.Controls.TextBox)(this.FindName("Txt_Identifiant")));
     this.label1                     = ((System.Windows.Controls.Label)(this.FindName("label1")));
     this.lbl_Telephone_Copy         = ((System.Windows.Controls.Label)(this.FindName("lbl_Telephone_Copy")));
     this.lbl_Telephone_Copy1        = ((System.Windows.Controls.Label)(this.FindName("lbl_Telephone_Copy1")));
     this.Txt_NouvNomClientAbon      = ((System.Windows.Controls.TextBox)(this.FindName("Txt_NouvNomClientAbon")));
     this.lbl_Nom_Copy               = ((System.Windows.Controls.Label)(this.FindName("lbl_Nom_Copy")));
     this.Txt_Nouvtelephone          = ((System.Windows.Controls.TextBox)(this.FindName("Txt_Nouvtelephone")));
     this.lbl_Telephone_Copy2        = ((System.Windows.Controls.Label)(this.FindName("lbl_Telephone_Copy2")));
     this.Txt_NouvAddresse1          = ((System.Windows.Controls.TextBox)(this.FindName("Txt_NouvAddresse1")));
     this.Txt_Nouvadresse2           = ((System.Windows.Controls.TextBox)(this.FindName("Txt_Nouvadresse2")));
     this.Txt_NouvCodeConsomateur    = ((System.Windows.Controls.TextBox)(this.FindName("Txt_NouvCodeConsomateur")));
     this.lbl_CodeConsomateur_Copy   = ((System.Windows.Controls.Label)(this.FindName("lbl_CodeConsomateur_Copy")));
     this.Txt_NouvCodeFermableClient = ((System.Windows.Controls.TextBox)(this.FindName("Txt_NouvCodeFermableClient")));
     this.lbl_CodeRelance_Copy       = ((System.Windows.Controls.Label)(this.FindName("lbl_CodeRelance_Copy")));
     this.Txt_NouvCodeCategorie      = ((System.Windows.Controls.TextBox)(this.FindName("Txt_NouvCodeCategorie")));
     this.lbl_categoie_Copy          = ((System.Windows.Controls.Label)(this.FindName("lbl_categoie_Copy")));
     this.Txt_NouvLibelleCodeConso   = ((System.Windows.Controls.TextBox)(this.FindName("Txt_NouvLibelleCodeConso")));
     this.Txt_NouvLibelleFermable    = ((System.Windows.Controls.TextBox)(this.FindName("Txt_NouvLibelleFermable")));
     this.Txt_NouvLibelleCategorie   = ((System.Windows.Controls.TextBox)(this.FindName("Txt_NouvLibelleCategorie")));
     this.Txt_NouvCodeRegroupement   = ((System.Windows.Controls.TextBox)(this.FindName("Txt_NouvCodeRegroupement")));
     this.lbl_CodeRegroupement_Copy  = ((System.Windows.Controls.Label)(this.FindName("lbl_CodeRegroupement_Copy")));
     this.Txt_NouvCodeNationalite    = ((System.Windows.Controls.TextBox)(this.FindName("Txt_NouvCodeNationalite")));
     this.lbl_Nationnalite_Copy      = ((System.Windows.Controls.Label)(this.FindName("lbl_Nationnalite_Copy")));
     this.Txt_NouvLibelleGroupeCode  = ((System.Windows.Controls.TextBox)(this.FindName("Txt_NouvLibelleGroupeCode")));
     this.Txt_NouvNationnalite       = ((System.Windows.Controls.TextBox)(this.FindName("Txt_NouvNationnalite")));
     this.Txt_NouvIdentifiant        = ((System.Windows.Controls.TextBox)(this.FindName("Txt_NouvIdentifiant")));
     this.label1_Copy                = ((System.Windows.Controls.Label)(this.FindName("label1_Copy")));
     this.lbl_Telephone_Copy3        = ((System.Windows.Controls.Label)(this.FindName("lbl_Telephone_Copy3")));
     this.lbl_Telephone_Copy4        = ((System.Windows.Controls.Label)(this.FindName("lbl_Telephone_Copy4")));
     this.Txt_Motif                  = ((System.Windows.Controls.TextBox)(this.FindName("Txt_Motif")));
     this.lbl_Nom_Copy1              = ((System.Windows.Controls.Label)(this.FindName("lbl_Nom_Copy1")));
     this.Txt_Matricule              = ((System.Windows.Controls.TextBox)(this.FindName("Txt_Matricule")));
     this.label1_Matricule           = ((System.Windows.Controls.Label)(this.FindName("label1_Matricule")));
     this.Txt_NouvMatricule          = ((System.Windows.Controls.TextBox)(this.FindName("Txt_NouvMatricule")));
     this.label1_Copy1               = ((System.Windows.Controls.Label)(this.FindName("label1_Copy1")));
     this.prgBar                     = ((System.Windows.Controls.ProgressBar)(this.FindName("prgBar")));
     this.Txt_AncCodeTarif           = ((System.Windows.Controls.TextBox)(this.FindName("Txt_AncCodeTarif")));
     this.lbl_CodeTarif              = ((System.Windows.Controls.Label)(this.FindName("lbl_CodeTarif")));
     this.Txt_AncLibelleTarif        = ((System.Windows.Controls.TextBox)(this.FindName("Txt_AncLibelleTarif")));
     this.Txt_NouvCodeTarif          = ((System.Windows.Controls.TextBox)(this.FindName("Txt_NouvCodeTarif")));
     this.lbl_CodeTarif_Copy         = ((System.Windows.Controls.Label)(this.FindName("lbl_CodeTarif_Copy")));
     this.Txt_NouvLibelleTarif       = ((System.Windows.Controls.TextBox)(this.FindName("Txt_NouvLibelleTarif")));
     this.Txt_CodeCivilite           = ((System.Windows.Controls.TextBox)(this.FindName("Txt_CodeCivilite")));
     this.lbl_Civilite               = ((System.Windows.Controls.Label)(this.FindName("lbl_Civilite")));
     this.Txt_Civilite               = ((System.Windows.Controls.TextBox)(this.FindName("Txt_Civilite")));
     this.Txt_NouvCodeCivilite       = ((System.Windows.Controls.TextBox)(this.FindName("Txt_NouvCodeCivilite")));
     this.lbl_NouvCivilite           = ((System.Windows.Controls.Label)(this.FindName("lbl_NouvCivilite")));
     this.Txt_NouvCivilite           = ((System.Windows.Controls.TextBox)(this.FindName("Txt_NouvCivilite")));
 }
        void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target)
        {
            switch (connectionId)
            {
            case 1:

            #line 8 "..\..\MainWindow.xaml"
                ((WpfApp1.MainWindow)(target)).ContentRendered += new System.EventHandler(this.Window_ContentRendered);

            #line default
            #line hidden
                return;

            case 2:
                this.Scan = ((System.Windows.Controls.Button)(target));

            #line 32 "..\..\MainWindow.xaml"
                this.Scan.Click += new System.Windows.RoutedEventHandler(this.Scan_Click);

            #line default
            #line hidden
                return;

            case 3:

            #line 61 "..\..\MainWindow.xaml"
                ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.Button_Click_1);

            #line default
            #line hidden
                return;

            case 4:

            #line 84 "..\..\MainWindow.xaml"
                ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.Button_Click_3);

            #line default
            #line hidden
                return;

            case 5:
                this.pbStatus = ((System.Windows.Controls.ProgressBar)(target));
                return;

            case 6:
                this.log = ((System.Windows.Controls.Button)(target));

            #line 108 "..\..\MainWindow.xaml"
                this.log.Click += new System.Windows.RoutedEventHandler(this.log_Click);

            #line default
            #line hidden
                return;

            case 7:
                this.lab = ((System.Windows.Controls.Label)(target));
                return;
            }
            this._contentLoaded = true;
        }
Example #52
0
        void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target)
        {
            switch (connectionId)
            {
            case 1:

            #line 8 "..\..\RankQuery.xaml"
                ((System.Windows.Controls.Grid)(target)).SizeChanged += new System.Windows.SizeChangedEventHandler(this.Grid_SizeChanged);

            #line default
            #line hidden
                return;

            case 2:
                this.Tab = ((System.Windows.Controls.TabControl)(target));
                return;

            case 3:
                this.rbOneMode = ((System.Windows.Controls.RadioButton)(target));

            #line 25 "..\..\RankQuery.xaml"
                this.rbOneMode.Click += new System.Windows.RoutedEventHandler(this.OneMode);

            #line default
            #line hidden
                return;

            case 4:
                this.rbTwoMode = ((System.Windows.Controls.RadioButton)(target));

            #line 26 "..\..\RankQuery.xaml"
                this.rbTwoMode.Click += new System.Windows.RoutedEventHandler(this.TwoMode);

            #line default
            #line hidden
                return;

            case 5:
                this.TabMode = ((System.Windows.Controls.TabControl)(target));
                return;

            case 6:
                this.tbQueryKeyURL = ((System.Windows.Controls.TextBox)(target));
                return;

            case 7:
                this.tbQueryKeyTwoMode = ((System.Windows.Controls.TextBox)(target));
                return;

            case 8:
                this.tbQueryURLTwoMode = ((System.Windows.Controls.TextBox)(target));
                return;

            case 9:
                this.Rand10 = ((System.Windows.Controls.RadioButton)(target));
                return;

            case 10:
                this.Rand20 = ((System.Windows.Controls.RadioButton)(target));
                return;

            case 11:
                this.Rand50 = ((System.Windows.Controls.RadioButton)(target));
                return;

            case 12:
                this.Rand100 = ((System.Windows.Controls.RadioButton)(target));
                return;

            case 13:

            #line 92 "..\..\RankQuery.xaml"
                ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.Query);

            #line default
            #line hidden
                return;

            case 14:
                this.tbTotal = ((System.Windows.Controls.TextBlock)(target));
                return;

            case 15:
                this.tbInclude = ((System.Windows.Controls.TextBlock)(target));
                return;

            case 16:
                this.tbIncludeRate = ((System.Windows.Controls.TextBlock)(target));
                return;

            case 17:
                this.tbUnInclude = ((System.Windows.Controls.TextBlock)(target));
                return;

            case 18:
                this.tbUnIncludeRate = ((System.Windows.Controls.TextBlock)(target));
                return;

            case 19:

            #line 116 "..\..\RankQuery.xaml"
                ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.ReturnQuery);

            #line default
            #line hidden
                return;

            case 20:

            #line 124 "..\..\RankQuery.xaml"
                ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.ResultExport);

            #line default
            #line hidden
                return;

            case 21:
                this.dgQueryResult = ((System.Windows.Controls.DataGrid)(target));
                return;

            case 22:
                this.pbQuery = ((System.Windows.Controls.ProgressBar)(target));
                return;
            }
            this._contentLoaded = true;
        }
Example #53
0
        void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target)
        {
            switch (connectionId)
            {
            case 1:

            #line 4 "..\..\..\MainWindow.xaml"
                ((TypingTutor.MainWindow)(target)).Loaded += new System.Windows.RoutedEventHandler(this.onload);

            #line default
            #line hidden

            #line 4 "..\..\..\MainWindow.xaml"
                ((TypingTutor.MainWindow)(target)).Closed += new System.EventHandler(this.close);

            #line default
            #line hidden
                return;

            case 2:
                this.button = ((System.Windows.Controls.Button)(target));

            #line 115 "..\..\..\MainWindow.xaml"
                this.button.Click += new System.Windows.RoutedEventHandler(this.button_Click_1);

            #line default
            #line hidden
                return;

            case 3:
                this.textBlock = ((System.Windows.Controls.TextBlock)(target));
                return;

            case 4:
                this.textBox = ((System.Windows.Controls.TextBox)(target));

            #line 118 "..\..\..\MainWindow.xaml"
                this.textBox.KeyDown += new System.Windows.Input.KeyEventHandler(this.key_press);

            #line default
            #line hidden
                return;

            case 5:
                this.progressbar = ((System.Windows.Controls.ProgressBar)(target));
                return;

            case 6:
                this.radioButton_Copy = ((System.Windows.Controls.RadioButton)(target));
                return;

            case 7:
                this.radioButton = ((System.Windows.Controls.RadioButton)(target));
                return;

            case 8:
                this.label_Copy = ((System.Windows.Controls.Label)(target));
                return;

            case 9:
                this.label_Copy1 = ((System.Windows.Controls.Label)(target));
                return;

            case 10:
                this.label = ((System.Windows.Controls.Label)(target));
                return;

            case 11:
                this.textBlock1 = ((System.Windows.Controls.TextBlock)(target));
                return;

            case 12:
                this.label1 = ((System.Windows.Controls.Label)(target));
                return;

            case 13:
                this.label1_Copy = ((System.Windows.Controls.Label)(target));
                return;

            case 14:
                this.label1_Copy1 = ((System.Windows.Controls.Label)(target));
                return;

            case 15:
                this.label1_Copy2 = ((System.Windows.Controls.Label)(target));
                return;
            }
            this._contentLoaded = true;
        }
Example #54
0
        void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target)
        {
            switch (connectionId)
            {
            case 1:
                this.Button_StartCollect = ((System.Windows.Controls.Button)(target));

            #line 14 "..\..\MainWindow.xaml"
                this.Button_StartCollect.Click += new System.Windows.RoutedEventHandler(this.Button_ReadFromAPI);

            #line default
            #line hidden
                return;

            case 2:
                this.TextBox_ProjectKey = ((System.Windows.Controls.TextBox)(target));

            #line 15 "..\..\MainWindow.xaml"
                this.TextBox_ProjectKey.TextChanged += new System.Windows.Controls.TextChangedEventHandler(this.TextBox_TextChanged);

            #line default
            #line hidden
                return;

            case 3:
                this.ProgressBar_Historie = ((System.Windows.Controls.ProgressBar)(target));

            #line 16 "..\..\MainWindow.xaml"
                this.ProgressBar_Historie.ValueChanged += new System.Windows.RoutedPropertyChangedEventHandler <double>(this.ProgressBar_Historie_ValueChanged);

            #line default
            #line hidden
                return;

            case 4:
                this.Button_FilePath = ((System.Windows.Controls.Button)(target));

            #line 17 "..\..\MainWindow.xaml"
                this.Button_FilePath.Click += new System.Windows.RoutedEventHandler(this.Button_FilePath_Click);

            #line default
            #line hidden
                return;

            case 5:
                this.TextBlock_Filepath = ((System.Windows.Controls.TextBlock)(target));
                return;

            case 6:
                this.TextBox_User = ((System.Windows.Controls.TextBox)(target));
                return;

            case 7:
                this.TextBox_Server_URL = ((System.Windows.Controls.TextBox)(target));
                return;

            case 8:
                this.PasswordBox_pw = ((System.Windows.Controls.PasswordBox)(target));
                return;

            case 9:
                this.Button_SerlectJson = ((System.Windows.Controls.Button)(target));

            #line 31 "..\..\MainWindow.xaml"
                this.Button_SerlectJson.Click += new System.Windows.RoutedEventHandler(this.Button_CfdFromJson_Click);

            #line default
            #line hidden
                return;

            case 10:
                this.TextBox_JsonPath = ((System.Windows.Controls.TextBox)(target));
                return;

            case 11:

            #line 33 "..\..\MainWindow.xaml"
                ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.Button_IssuesFromJson);

            #line default
            #line hidden
                return;
            }
            this._contentLoaded = true;
        }
Example #55
0
 public void InitializeComponent()
 {
     if (_contentLoaded)
     {
         return;
     }
     _contentLoaded = true;
     System.Windows.Application.LoadComponent(this, new System.Uri("/Galatee.Silverlight;component/Accueil/FrmModificationAbonnement.xaml", System.UriKind.Relative));
     this.LayoutRoot               = ((System.Windows.Controls.Grid)(this.FindName("LayoutRoot")));
     this.gbo_typefact_Copy        = ((SilverlightContrib.Controls.GroupBox)(this.FindName("gbo_typefact_Copy")));
     this.gbo_typefact_Copy1       = ((SilverlightContrib.Controls.GroupBox)(this.FindName("gbo_typefact_Copy1")));
     this.prgBar                   = ((System.Windows.Controls.ProgressBar)(this.FindName("prgBar")));
     this.CancelButton             = ((System.Windows.Controls.Button)(this.FindName("CancelButton")));
     this.OKButton                 = ((System.Windows.Controls.Button)(this.FindName("OKButton")));
     this.lbl_Tarif                = ((System.Windows.Controls.Label)(this.FindName("lbl_Tarif")));
     this.Txt_CodePussanceSoucrite = ((System.Windows.Controls.TextBox)(this.FindName("Txt_CodePussanceSoucrite")));
     this.lbl_PuissanceSouscrite   = ((System.Windows.Controls.Label)(this.FindName("lbl_PuissanceSouscrite")));
     this.lbl_PuissanceUtilise     = ((System.Windows.Controls.Label)(this.FindName("lbl_PuissanceUtilise")));
     this.Txt_CodeForfait          = ((System.Windows.Controls.TextBox)(this.FindName("Txt_CodeForfait")));
     this.lbl_Forfait              = ((System.Windows.Controls.Label)(this.FindName("lbl_Forfait")));
     this.Txt_CodeFrequence        = ((Galatee.Silverlight.Library.NumericTextBox)(this.FindName("Txt_CodeFrequence")));
     this.lbl_Periodicite          = ((System.Windows.Controls.Label)(this.FindName("lbl_Periodicite")));
     this.Txt_CodeMoisFacturation  = ((Galatee.Silverlight.Library.NumericTextBox)(this.FindName("Txt_CodeMoisFacturation")));
     this.lbl_MoisFact             = ((System.Windows.Controls.Label)(this.FindName("lbl_MoisFact")));
     this.Txt_LibelleForfait       = ((System.Windows.Controls.TextBox)(this.FindName("Txt_LibelleForfait")));
     this.btn_frequence            = ((System.Windows.Controls.Button)(this.FindName("btn_frequence")));
     this.Txt_LibelleFrequence     = ((System.Windows.Controls.TextBox)(this.FindName("Txt_LibelleFrequence")));
     this.btn_moisdefacturation    = ((System.Windows.Controls.Button)(this.FindName("btn_moisdefacturation")));
     this.Txt_LibMoisFact          = ((System.Windows.Controls.TextBox)(this.FindName("Txt_LibMoisFact")));
     this.Txt_CodeTarif            = ((Galatee.Silverlight.Library.NumericTextBox)(this.FindName("Txt_CodeTarif")));
     this.btn_tarifs               = ((System.Windows.Controls.Button)(this.FindName("btn_tarifs")));
     this.Txt_LibelleTarif         = ((System.Windows.Controls.TextBox)(this.FindName("Txt_LibelleTarif")));
     this.btn_PussSouscrite        = ((System.Windows.Controls.Button)(this.FindName("btn_PussSouscrite")));
     this.btn_forfait              = ((System.Windows.Controls.Button)(this.FindName("btn_forfait")));
     this.lbl_DateAbonnement       = ((System.Windows.Controls.Label)(this.FindName("lbl_DateAbonnement")));
     this.Txt_DateAbonnement       = ((System.Windows.Controls.TextBox)(this.FindName("Txt_DateAbonnement")));
     this.Txt_CodePuissanceUtilise = ((System.Windows.Controls.TextBox)(this.FindName("Txt_CodePuissanceUtilise")));
     this.chk_EstExoneration       = ((System.Windows.Controls.CheckBox)(this.FindName("chk_EstExoneration")));
     this.label2                   = ((System.Windows.Controls.Label)(this.FindName("label2")));
     this.txtSite                  = ((System.Windows.Controls.TextBox)(this.FindName("txtSite")));
     this.label3                   = ((System.Windows.Controls.Label)(this.FindName("label3")));
     this.txtCentre                = ((System.Windows.Controls.TextBox)(this.FindName("txtCentre")));
     this.label5                   = ((System.Windows.Controls.Label)(this.FindName("label5")));
     this.txt_tdem                 = ((System.Windows.Controls.TextBox)(this.FindName("txt_tdem")));
     this.lbl_Produit              = ((System.Windows.Controls.Label)(this.FindName("lbl_Produit")));
     this.txt_Produit              = ((System.Windows.Controls.TextBox)(this.FindName("txt_Produit")));
     this.btn_RechercheClient      = ((System.Windows.Controls.Button)(this.FindName("btn_RechercheClient")));
     this.lbl_NumerodeDemande      = ((System.Windows.Controls.Label)(this.FindName("lbl_NumerodeDemande")));
     this.Txt_ReferenceClient      = ((System.Windows.Controls.TextBox)(this.FindName("Txt_ReferenceClient")));
     this.Gbo_PieceJointe          = ((SilverlightContrib.Controls.GroupBox)(this.FindName("Gbo_PieceJointe")));
     this.dgListePiece             = ((System.Windows.Controls.DataGrid)(this.FindName("dgListePiece")));
     this.btn_ajoutpiece           = ((System.Windows.Controls.Button)(this.FindName("btn_ajoutpiece")));
     this.btn_supprimerpiece       = ((System.Windows.Controls.Button)(this.FindName("btn_supprimerpiece")));
     this.cbo_typedoc              = ((System.Windows.Controls.ComboBox)(this.FindName("cbo_typedoc")));
     this.Txt_Motif                = ((System.Windows.Controls.TextBox)(this.FindName("Txt_Motif")));
     this.Txt_MotifRejet           = ((System.Windows.Controls.TextBox)(this.FindName("Txt_MotifRejet")));
     this.txt_FinPeriodeExo        = ((System.Windows.Controls.TextBox)(this.FindName("txt_FinPeriodeExo")));
     this.txt_DebutPeriodeExo      = ((System.Windows.Controls.TextBox)(this.FindName("txt_DebutPeriodeExo")));
     this.lbl_DateResil            = ((System.Windows.Controls.Label)(this.FindName("lbl_DateResil")));
     this.Txt_DateResiliation      = ((System.Windows.Controls.TextBox)(this.FindName("Txt_DateResiliation")));
     this.lbl_DateResil_Copy       = ((System.Windows.Controls.Label)(this.FindName("lbl_DateResil_Copy")));
     this.Txt_AvanceSurConso       = ((System.Windows.Controls.TextBox)(this.FindName("Txt_AvanceSurConso")));
     this.chk_EstBornePoste        = ((System.Windows.Controls.CheckBox)(this.FindName("chk_EstBornePoste")));
     this.Txt_TypeDeComptage       = ((System.Windows.Controls.TextBox)(this.FindName("Txt_TypeDeComptage")));
     this.lbl_TypeDeComptage       = ((System.Windows.Controls.Label)(this.FindName("lbl_TypeDeComptage")));
     this.Txt_CodeCategorie        = ((System.Windows.Controls.TextBox)(this.FindName("Txt_CodeCategorie")));
     this.lbl_categoie             = ((System.Windows.Controls.Label)(this.FindName("lbl_categoie")));
     this.Txt_LibelleCategorie     = ((System.Windows.Controls.TextBox)(this.FindName("Txt_LibelleCategorie")));
     this.btn_Categorie            = ((System.Windows.Controls.Button)(this.FindName("btn_Categorie")));
 }
Example #56
0
        void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target)
        {
            switch (connectionId)
            {
            case 1:

            #line 10 "..\..\MainWindow.xaml"
                ((System.Windows.Controls.TabControl)(target)).SelectionChanged += new System.Windows.Controls.SelectionChangedEventHandler(this.TabControl_SelectionChanged);

            #line default
            #line hidden
                return;

            case 2:
                this.btnMineResources = ((System.Windows.Controls.Button)(target));

            #line 26 "..\..\MainWindow.xaml"
                this.btnMineResources.Click += new System.Windows.RoutedEventHandler(this.btnMineResources_Click);

            #line default
            #line hidden
                return;

            case 3:
                this.barMinerA = ((System.Windows.Controls.ProgressBar)(target));

            #line 36 "..\..\MainWindow.xaml"
                this.barMinerA.ValueChanged += new System.Windows.RoutedPropertyChangedEventHandler <double>(this.barMinerA_ValueChanged);

            #line default
            #line hidden
                return;

            case 4:
                this.txMinerAValue = ((System.Windows.Controls.Label)(target));
                return;

            case 5:
                this.barMinerB = ((System.Windows.Controls.ProgressBar)(target));
                return;

            case 6:
                this.txMinerBValue = ((System.Windows.Controls.Label)(target));
                return;

            case 7:
                this.barMinerC = ((System.Windows.Controls.ProgressBar)(target));
                return;

            case 8:
                this.txMinerCValue = ((System.Windows.Controls.Label)(target));
                return;

            case 9:
                this.txbShopItems = ((System.Windows.Controls.ListBox)(target));
                return;

            case 10:
                this.btnBuyMiner = ((System.Windows.Controls.Button)(target));

            #line 79 "..\..\MainWindow.xaml"
                this.btnBuyMiner.Click += new System.Windows.RoutedEventHandler(this.btnBuyMiner_Click);

            #line default
            #line hidden
                return;

            case 11:
                this.btnUpgradeClicking = ((System.Windows.Controls.Button)(target));
                return;

            case 12:
                this.btnUpgradeMinerSpeed = ((System.Windows.Controls.Button)(target));
                return;

            case 13:
                this.txtGold = ((System.Windows.Controls.Label)(target));
                return;
            }
            this._contentLoaded = true;
        }
Example #57
0
 public void InitializeComponent()
 {
     if (_contentLoaded)
     {
         return;
     }
     _contentLoaded = true;
     System.Windows.Application.LoadComponent(this, new System.Uri("/Galatee.Silverlight;component/Devis/FrmVerificationRemboursementTravaux.xaml", System.UriKind.Relative));
     this.LayoutRoot = ((System.Windows.Controls.Grid)(this.FindName("LayoutRoot")));
     this.Gbo_InformationDemandeDevis = ((SilverlightContrib.Controls.GroupBox)(this.FindName("Gbo_InformationDemandeDevis")));
     this.CancelButton                    = ((System.Windows.Controls.Button)(this.FindName("CancelButton")));
     this.OKButton                        = ((System.Windows.Controls.Button)(this.FindName("OKButton")));
     this.tabItemClient                   = ((System.Windows.Controls.TabItem)(this.FindName("tabItemClient")));
     this.label17                         = ((System.Windows.Controls.Label)(this.FindName("label17")));
     this.Txt_NomClient                   = ((System.Windows.Controls.TextBox)(this.FindName("Txt_NomClient")));
     this.lbl_CodeConsomateur             = ((System.Windows.Controls.Label)(this.FindName("lbl_CodeConsomateur")));
     this.lbl_CodeRelance                 = ((System.Windows.Controls.Label)(this.FindName("lbl_CodeRelance")));
     this.lbl_categoie                    = ((System.Windows.Controls.Label)(this.FindName("lbl_categoie")));
     this.label22                         = ((System.Windows.Controls.Label)(this.FindName("label22")));
     this.tab12_Txt_LibelleCodeConso      = ((System.Windows.Controls.TextBox)(this.FindName("tab12_Txt_LibelleCodeConso")));
     this.tab12_Txt_LibelleEtatClient     = ((System.Windows.Controls.TextBox)(this.FindName("tab12_Txt_LibelleEtatClient")));
     this.tab12_Txt_LibelleCategorie      = ((System.Windows.Controls.TextBox)(this.FindName("tab12_Txt_LibelleCategorie")));
     this.tab12_Txt_LibelleTypeClient     = ((System.Windows.Controls.TextBox)(this.FindName("tab12_Txt_LibelleTypeClient")));
     this.lbl_CodeRegroupement            = ((System.Windows.Controls.Label)(this.FindName("lbl_CodeRegroupement")));
     this.lbl_Nationnalite                = ((System.Windows.Controls.Label)(this.FindName("lbl_Nationnalite")));
     this.tab12_Txt_LibelleGroupeCode     = ((System.Windows.Controls.TextBox)(this.FindName("tab12_Txt_LibelleGroupeCode")));
     this.tab12_Txt_Nationnalite          = ((System.Windows.Controls.TextBox)(this.FindName("tab12_Txt_Nationnalite")));
     this.lbl_RegroupementCompteur_Copy12 = ((System.Windows.Controls.Label)(this.FindName("lbl_RegroupementCompteur_Copy12")));
     this.tab12_Txt_Datecreate            = ((System.Windows.Controls.TextBox)(this.FindName("tab12_Txt_Datecreate")));
     this.label17_Copy                    = ((System.Windows.Controls.Label)(this.FindName("label17_Copy")));
     this.Txt_Telephone                   = ((System.Windows.Controls.TextBox)(this.FindName("Txt_Telephone")));
     this.tabItemAbon                     = ((System.Windows.Controls.TabItem)(this.FindName("tabItemAbon")));
     this.lbl_Tarif                       = ((System.Windows.Controls.Label)(this.FindName("lbl_Tarif")));
     this.Txt_CodePussanceSoucrite        = ((System.Windows.Controls.TextBox)(this.FindName("Txt_CodePussanceSoucrite")));
     this.lbl_PuissanceSouscrite          = ((System.Windows.Controls.Label)(this.FindName("lbl_PuissanceSouscrite")));
     this.lbl_PuissanceUtilise            = ((System.Windows.Controls.Label)(this.FindName("lbl_PuissanceUtilise")));
     this.Txt_CodeForfait                 = ((System.Windows.Controls.TextBox)(this.FindName("Txt_CodeForfait")));
     this.lbl_Forfait                     = ((System.Windows.Controls.Label)(this.FindName("lbl_Forfait")));
     this.textBox23                       = ((System.Windows.Controls.TextBox)(this.FindName("textBox23")));
     this.lbl_ForfaitPersonaliseAnnuel    = ((System.Windows.Controls.Label)(this.FindName("lbl_ForfaitPersonaliseAnnuel")));
     this.Txt_CodeFrequence               = ((System.Windows.Controls.TextBox)(this.FindName("Txt_CodeFrequence")));
     this.lbl_Periodicite                 = ((System.Windows.Controls.Label)(this.FindName("lbl_Periodicite")));
     this.Txt_CodeMoisFacturation         = ((System.Windows.Controls.TextBox)(this.FindName("Txt_CodeMoisFacturation")));
     this.lbl_MoisFact                    = ((System.Windows.Controls.Label)(this.FindName("lbl_MoisFact")));
     this.Txt_LibelleForfait              = ((System.Windows.Controls.TextBox)(this.FindName("Txt_LibelleForfait")));
     this.Txt_LibelleFrequence            = ((System.Windows.Controls.TextBox)(this.FindName("Txt_LibelleFrequence")));
     this.Txt_LibMoisFact                 = ((System.Windows.Controls.TextBox)(this.FindName("Txt_LibMoisFact")));
     this.Txt_CodeMoisIndex               = ((System.Windows.Controls.TextBox)(this.FindName("Txt_CodeMoisIndex")));
     this.Txt_LibelleMoisIndex            = ((System.Windows.Controls.TextBox)(this.FindName("Txt_LibelleMoisIndex")));
     this.Txt_CodeTarif                   = ((System.Windows.Controls.TextBox)(this.FindName("Txt_CodeTarif")));
     this.Txt_LibelleTarif                = ((System.Windows.Controls.TextBox)(this.FindName("Txt_LibelleTarif")));
     this.lbl_DateAbonnement              = ((System.Windows.Controls.Label)(this.FindName("lbl_DateAbonnement")));
     this.Txt_DateAbonnement              = ((System.Windows.Controls.TextBox)(this.FindName("Txt_DateAbonnement")));
     this.Txt_CodePuissanceUtilise        = ((System.Windows.Controls.TextBox)(this.FindName("Txt_CodePuissanceUtilise")));
     this.Chk_IsExonneration              = ((System.Windows.Controls.CheckBox)(this.FindName("Chk_IsExonneration")));
     this.textBox7_Copy                   = ((System.Windows.Controls.TextBox)(this.FindName("textBox7_Copy")));
     this.textBox7_Copy1                  = ((System.Windows.Controls.TextBox)(this.FindName("textBox7_Copy1")));
     this.lbl_MoisFact_Copy               = ((System.Windows.Controls.Label)(this.FindName("lbl_MoisFact_Copy")));
     this.tabItemCompte                   = ((System.Windows.Controls.TabItem)(this.FindName("tabItemCompte")));
     this.LsvFacture                      = ((System.Windows.Controls.DataGrid)(this.FindName("LsvFacture")));
     this.Txt_TotalHt                     = ((System.Windows.Controls.TextBox)(this.FindName("Txt_TotalHt")));
     this.Txt_totalTaxe                   = ((System.Windows.Controls.TextBox)(this.FindName("Txt_totalTaxe")));
     this.Txt_TotalTTC                    = ((System.Windows.Controls.TextBox)(this.FindName("Txt_TotalTTC")));
     this.lbl_total                       = ((System.Windows.Controls.Label)(this.FindName("lbl_total")));
     this.tabPieceJointe                  = ((System.Windows.Controls.TabItem)(this.FindName("tabPieceJointe")));
     this.Gbo_PieceJointe                 = ((SilverlightContrib.Controls.GroupBox)(this.FindName("Gbo_PieceJointe")));
     this.lbl_Motif                       = ((System.Windows.Controls.Label)(this.FindName("lbl_Motif")));
     this.Txt_Motfif                      = ((System.Windows.Controls.TextBox)(this.FindName("Txt_Motfif")));
     this.cbo_typedoc                     = ((System.Windows.Controls.ComboBox)(this.FindName("cbo_typedoc")));
     this.dgListePiece                    = ((System.Windows.Controls.DataGrid)(this.FindName("dgListePiece")));
     this.btn_ajoutpiece                  = ((System.Windows.Controls.Button)(this.FindName("btn_ajoutpiece")));
     this.btn_supprimerpiece              = ((System.Windows.Controls.Button)(this.FindName("btn_supprimerpiece")));
     this.label2              = ((System.Windows.Controls.Label)(this.FindName("label2")));
     this.txtSite             = ((System.Windows.Controls.TextBox)(this.FindName("txtSite")));
     this.label3              = ((System.Windows.Controls.Label)(this.FindName("label3")));
     this.txtCentre           = ((System.Windows.Controls.TextBox)(this.FindName("txtCentre")));
     this.label5              = ((System.Windows.Controls.Label)(this.FindName("label5")));
     this.txt_tdem            = ((System.Windows.Controls.TextBox)(this.FindName("txt_tdem")));
     this.label4              = ((System.Windows.Controls.Label)(this.FindName("label4")));
     this.txt_Produit         = ((System.Windows.Controls.TextBox)(this.FindName("txt_Produit")));
     this.lbl_NumerodeDemande = ((System.Windows.Controls.Label)(this.FindName("lbl_NumerodeDemande")));
     this.Txt_NumeroDemande   = ((System.Windows.Controls.TextBox)(this.FindName("Txt_NumeroDemande")));
     this.prgBar              = ((System.Windows.Controls.ProgressBar)(this.FindName("prgBar")));
 }
Example #58
0
        void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target)
        {
            switch (connectionId)
            {
            case 1:
                this.button1 = ((System.Windows.Controls.Button)(target));

            #line 9 "..\..\Window3.xaml"
                this.button1.Click += new System.Windows.RoutedEventHandler(this.ok);

            #line default
            #line hidden
                return;

            case 2:
                this.Label1 = ((System.Windows.Controls.Label)(target));
                return;

            case 3:
                this.button2 = ((System.Windows.Controls.Button)(target));

            #line 11 "..\..\Window3.xaml"
                this.button2.Click += new System.Windows.RoutedEventHandler(this.no);

            #line default
            #line hidden
                return;

            case 4:
                this.bar = ((System.Windows.Controls.ProgressBar)(target));
                return;

            case 5:
                this.bar1 = ((System.Windows.Controls.ProgressBar)(target));
                return;

            case 6:
                this.Label3 = ((System.Windows.Controls.Label)(target));
                return;

            case 7:
                this.Label5 = ((System.Windows.Controls.Label)(target));
                return;

            case 8:
                this.text1 = ((System.Windows.Controls.TextBlock)(target));
                return;

            case 9:
                this.Label6 = ((System.Windows.Controls.Label)(target));
                return;

            case 10:
                this.Label4 = ((System.Windows.Controls.Label)(target));
                return;

            case 11:
                this.button4 = ((System.Windows.Controls.Button)(target));

            #line 21 "..\..\Window3.xaml"
                this.button4.Click += new System.Windows.RoutedEventHandler(this.bazaok);

            #line default
            #line hidden
                return;
            }
            this._contentLoaded = true;
        }
Example #59
0
        void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target)
        {
            switch (connectionId)
            {
            case 1:

            #line 9 "..\..\MainWindow.xaml"
                ((seriaAssistant.MainWindow)(target)).Closing += new System.ComponentModel.CancelEventHandler(this.Window_Closing);

            #line default
            #line hidden

            #line 9 "..\..\MainWindow.xaml"
                ((seriaAssistant.MainWindow)(target)).PreviewKeyDown += new System.Windows.Input.KeyEventHandler(this.Window_KeyDown);

            #line default
            #line hidden
                return;

            case 2:
                this.textBlock3 = ((System.Windows.Controls.TextBlock)(target));
                return;

            case 3:
                this.ingroupbox = ((System.Windows.Controls.GroupBox)(target));
                return;

            case 4:
                this.outgroupbox = ((System.Windows.Controls.GroupBox)(target));
                return;

            case 5:
                this.recvHexRadioButton = ((System.Windows.Controls.RadioButton)(target));

            #line 39 "..\..\MainWindow.xaml"
                this.recvHexRadioButton.Checked += new System.Windows.RoutedEventHandler(this.recvModeButton_Checked);

            #line default
            #line hidden
                return;

            case 6:
                this.recvCharacterRadioButton = ((System.Windows.Controls.RadioButton)(target));

            #line 40 "..\..\MainWindow.xaml"
                this.recvCharacterRadioButton.Checked += new System.Windows.RoutedEventHandler(this.recvModeButton_Checked);

            #line default
            #line hidden
                return;

            case 7:
                this.recvDecRadioButton = ((System.Windows.Controls.RadioButton)(target));

            #line 41 "..\..\MainWindow.xaml"
                this.recvDecRadioButton.Checked += new System.Windows.RoutedEventHandler(this.recvModeButton_Checked);

            #line default
            #line hidden
                return;

            case 8:
                this.groupBox3_Copy = ((System.Windows.Controls.GroupBox)(target));
                return;

            case 9:
                this.sendHexRadioButton = ((System.Windows.Controls.RadioButton)(target));

            #line 54 "..\..\MainWindow.xaml"
                this.sendHexRadioButton.Click += new System.Windows.RoutedEventHandler(this.sendDataModeRadioButton_Click);

            #line default
            #line hidden
                return;

            case 10:
                this.sendCharacterRadioButton = ((System.Windows.Controls.RadioButton)(target));

            #line 55 "..\..\MainWindow.xaml"
                this.sendCharacterRadioButton.Click += new System.Windows.RoutedEventHandler(this.sendDataModeRadioButton_Click);

            #line default
            #line hidden
                return;

            case 11:
                this.textBlock2_Copy = ((System.Windows.Controls.TextBlock)(target));
                return;

            case 12:
                this.textBlock2_Copy1 = ((System.Windows.Controls.TextBlock)(target));
                return;

            case 13:
                this.textBlock2_Copy2 = ((System.Windows.Controls.TextBlock)(target));
                return;

            case 14:
                this.showgroupBox = ((System.Windows.Controls.GroupBox)(target));
                return;

            case 15:
                this.recvDataRichTextBox = ((System.Windows.Controls.RichTextBox)(target));
                return;

            case 16:
                this.groupBox = ((System.Windows.Controls.GroupBox)(target));
                return;

            case 17:
                this.clearRecvDataBoxButton = ((System.Windows.Controls.Button)(target));

            #line 93 "..\..\MainWindow.xaml"
                this.clearRecvDataBoxButton.Click += new System.Windows.RoutedEventHandler(this.clearRecvDataBoxButton_Click);

            #line default
            #line hidden
                return;

            case 18:
                this.readCoordinate = ((System.Windows.Controls.CheckBox)(target));

            #line 94 "..\..\MainWindow.xaml"
                this.readCoordinate.Click += new System.Windows.RoutedEventHandler(this.readCoordinate_Click);

            #line default
            #line hidden
                return;

            case 19:
                this.SaveXYZButton = ((System.Windows.Controls.Button)(target));

            #line 95 "..\..\MainWindow.xaml"
                this.SaveXYZButton.Click += new System.Windows.RoutedEventHandler(this.SaveXYZButton_Click);

            #line default
            #line hidden
                return;

            case 20:
                this.recvDataRichTextBoxForXYZ = ((System.Windows.Controls.RichTextBox)(target));
                return;

            case 21:
                this.groupBox2 = ((System.Windows.Controls.GroupBox)(target));
                return;

            case 22:
                this.groupBox4 = ((System.Windows.Controls.GroupBox)(target));
                return;

            case 23:
                this.sendDataButton = ((System.Windows.Controls.Button)(target));

            #line 128 "..\..\MainWindow.xaml"
                this.sendDataButton.Click += new System.Windows.RoutedEventHandler(this.sendDataButton_Click);

            #line default
            #line hidden
                return;

            case 24:
                this.sendDataTextBox = ((System.Windows.Controls.TextBox)(target));

            #line 129 "..\..\MainWindow.xaml"
                this.sendDataTextBox.TextChanged += new System.Windows.Controls.TextChangedEventHandler(this.sendDataTextBox_TextChanged);

            #line default
            #line hidden
                return;

            case 25:
                this.groupBox4_Copy = ((System.Windows.Controls.GroupBox)(target));
                return;

            case 26:
                this.textBlock = ((System.Windows.Controls.TextBlock)(target));
                return;

            case 27:
                this.autoSendIntervalTextBox = ((System.Windows.Controls.TextBox)(target));
                return;

            case 28:
                this.timeUnitComboBox = ((System.Windows.Controls.ComboBox)(target));
                return;

            case 29:
                this.autoSendEnableCheckBox = ((System.Windows.Controls.CheckBox)(target));

            #line 148 "..\..\MainWindow.xaml"
                this.autoSendEnableCheckBox.Click += new System.Windows.RoutedEventHandler(this.autoSendEnableCheckBox_Click);

            #line default
            #line hidden
                return;

            case 30:
                this.statusBar = ((System.Windows.Controls.Primitives.StatusBar)(target));
                return;

            case 31:
                this.statusInfoTextBlock = ((System.Windows.Controls.TextBlock)(target));
                return;

            case 32:
                this.progressBar = ((System.Windows.Controls.ProgressBar)(target));
                return;

            case 33:
                this.dataRecvStatusBarItem = ((System.Windows.Controls.Primitives.StatusBarItem)(target));
                return;

            case 34:
                this.timeDateTextBlock = ((System.Windows.Controls.TextBlock)(target));
                return;

            case 35:
                this.portsComboBox = ((System.Windows.Controls.ComboBox)(target));
                return;

            case 36:
                this.textBlock2 = ((System.Windows.Controls.TextBlock)(target));
                return;

            case 37:
                this.baudRateComboBox = ((System.Windows.Controls.ComboBox)(target));
                return;

            case 38:
                this.textBlock1 = ((System.Windows.Controls.TextBlock)(target));
                return;

            case 39:
                this.databitsComboBox = ((System.Windows.Controls.ComboBox)(target));
                return;

            case 40:
                this.stopBitsComboBox = ((System.Windows.Controls.ComboBox)(target));
                return;

            case 41:
                this.textBlock4 = ((System.Windows.Controls.TextBlock)(target));
                return;

            case 42:
                this.parityComboBox = ((System.Windows.Controls.ComboBox)(target));
                return;

            case 43:
                this.textBlock5 = ((System.Windows.Controls.TextBlock)(target));
                return;

            case 44:
                this.encodingComboBox = ((System.Windows.Controls.ComboBox)(target));
                return;

            case 45:
                this.textBlock6 = ((System.Windows.Controls.TextBlock)(target));
                return;

            case 46:
                this.openClosePortButton = ((System.Windows.Controls.Button)(target));

            #line 251 "..\..\MainWindow.xaml"
                this.openClosePortButton.Click += new System.Windows.RoutedEventHandler(this.openClosePortButton_Click);

            #line default
            #line hidden
                return;

            case 47:
                this.findPortButton = ((System.Windows.Controls.Button)(target));

            #line 252 "..\..\MainWindow.xaml"
                this.findPortButton.Click += new System.Windows.RoutedEventHandler(this.findPortButton_Click);

            #line default
            #line hidden
                return;
            }
            this._contentLoaded = true;
        }
Example #60
0
        void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target)
        {
            switch (connectionId)
            {
            case 1:

            #line 4 "..\..\MainWindow.xaml"
                ((Srch.MainWindow)(target)).Closing += new System.ComponentModel.CancelEventHandler(this.OnWindowClosing);

            #line default
            #line hidden

            #line 5 "..\..\MainWindow.xaml"
                ((Srch.MainWindow)(target)).PreviewKeyDown += new System.Windows.Input.KeyEventHandler(this.OnWindowPreviewKeyDown);

            #line default
            #line hidden

            #line 6 "..\..\MainWindow.xaml"
                ((Srch.MainWindow)(target)).MouseDoubleClick += new System.Windows.Input.MouseButtonEventHandler(this.OnMouseDoubleClick);

            #line default
            #line hidden

            #line 7 "..\..\MainWindow.xaml"
                ((Srch.MainWindow)(target)).SizeChanged += new System.Windows.SizeChangedEventHandler(this.OnSizeChanged);

            #line default
            #line hidden

            #line 8 "..\..\MainWindow.xaml"
                ((Srch.MainWindow)(target)).StateChanged += new System.EventHandler(this.OnStateChanged);

            #line default
            #line hidden
                return;

            case 2:
                this.progressBar = ((System.Windows.Controls.ProgressBar)(target));

            #line 11 "..\..\MainWindow.xaml"
                this.progressBar.PreviewKeyDown += new System.Windows.Input.KeyEventHandler(this.OnPbPreviewKeyDown);

            #line default
            #line hidden
                return;

            case 3:
                this.tbMain = ((System.Windows.Controls.TextBox)(target));

            #line 12 "..\..\MainWindow.xaml"
                this.tbMain.PreviewKeyDown += new System.Windows.Input.KeyEventHandler(this.OnTbMainPreviewKeyDown);

            #line default
            #line hidden

            #line 12 "..\..\MainWindow.xaml"
                this.tbMain.PreviewMouseWheel += new System.Windows.Input.MouseWheelEventHandler(this.OnMouseWheel);

            #line default
            #line hidden

            #line 12 "..\..\MainWindow.xaml"
                this.tbMain.PreviewMouseRightButtonDown += new System.Windows.Input.MouseButtonEventHandler(this.OnTbPreviewMouseRightButtonDown);

            #line default
            #line hidden

            #line 12 "..\..\MainWindow.xaml"
                this.tbMain.PreviewDragOver += new System.Windows.DragEventHandler(this.OnDragOver);

            #line default
            #line hidden

            #line 12 "..\..\MainWindow.xaml"
                this.tbMain.PreviewDrop += new System.Windows.DragEventHandler(this.OnDragDrop);

            #line default
            #line hidden
                return;

            case 4:
                this.miEditor2 = ((System.Windows.Controls.MenuItem)(target));

            #line 15 "..\..\MainWindow.xaml"
                this.miEditor2.Click += new System.Windows.RoutedEventHandler(this.OnClickMenuItemEditor2);

            #line default
            #line hidden
                return;

            case 5:
                this.miEditor3 = ((System.Windows.Controls.MenuItem)(target));

            #line 16 "..\..\MainWindow.xaml"
                this.miEditor3.Click += new System.Windows.RoutedEventHandler(this.OnClickMenuItemEditor3);

            #line default
            #line hidden
                return;

            case 6:
                this.miAssociatedApplication = ((System.Windows.Controls.MenuItem)(target));

            #line 17 "..\..\MainWindow.xaml"
                this.miAssociatedApplication.Click += new System.Windows.RoutedEventHandler(this.OnClickMenuItemAssociatedApplication);

            #line default
            #line hidden
                return;

            case 7:
                this.miOpenFolder = ((System.Windows.Controls.MenuItem)(target));

            #line 18 "..\..\MainWindow.xaml"
                this.miOpenFolder.Click += new System.Windows.RoutedEventHandler(this.OnClickMenuItemOpenFolder);

            #line default
            #line hidden
                return;

            case 8:
                this.miSearchInFile = ((System.Windows.Controls.MenuItem)(target));

            #line 19 "..\..\MainWindow.xaml"
                this.miSearchInFile.Click += new System.Windows.RoutedEventHandler(this.OnClickMenuSearchInFile);

            #line default
            #line hidden
                return;
            }
            this._contentLoaded = true;
        }