Beispiel #1
0
 public static void UpdateSize(FrameworkElement element, double availableWidth)
 {
     var vbox = new Viewbox { Child = element };
     vbox.Measure(new Size(availableWidth, 2000));
     vbox.Arrange(new Rect(0, 0, availableWidth, 2000));
     vbox.UpdateLayout();
 }
Beispiel #2
0
 public void AddGame(GameModel game)
 {
     var gameControl = new GameControl {Style = GameStyle, DataContext = game};
     var viewbox = new Viewbox {Style = GameViewBoxStyle};
     viewbox.Child = gameControl;
     Grid.Children.Add(viewbox);
 }
 void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) {
     switch (connectionId)
     {
     case 1:
     this.viewbox1 = ((System.Windows.Controls.Viewbox)(target));
     return;
     case 2:
     
     #line 10 "..\..\Window1.xaml"
     ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.Button_Click_2);
     
     #line default
     #line hidden
     return;
     case 3:
     
     #line 11 "..\..\Window1.xaml"
     ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.Button_Click_1);
     
     #line default
     #line hidden
     return;
     case 4:
     
     #line 12 "..\..\Window1.xaml"
     ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.Button_Click);
     
     #line default
     #line hidden
     return;
     }
     this._contentLoaded = true;
 }
        public override void OnApplyTemplate()
        {
            base.OnApplyTemplate();

            _viewbox = Template.FindName("ViewBoxInternal", this) as Viewbox;
            _label = Template.FindName("TextBlockInternal", this) as TextBlock;
        }
        public void AddCustomTab(TabControl parentTabControl, string name, UserControl userControl, bool useViewBox = true)
        {
            if (useViewBox)
            {
                Viewbox viewBox = new Viewbox();
                viewBox.Child = userControl;
                viewBox.Width = double.NaN;
                viewBox.Height = double.NaN;

                TabItem tabItem = new TabItem();
                tabItem.Header = name;
                tabItem.Content = viewBox;
                CopyFontData(tabItem1, tabItem);
                parentTabControl.Items.Add(tabItem);
            }
            else
            {
                userControl.Width = double.NaN;
                userControl.Height = double.NaN;
                userControl.HorizontalAlignment = System.Windows.HorizontalAlignment.Stretch;
                userControl.VerticalAlignment = System.Windows.VerticalAlignment.Stretch;

                Grid grid = new Grid();
                grid.Width = double.NaN;
                grid.Height = double.NaN;
                grid.HorizontalAlignment = System.Windows.HorizontalAlignment.Stretch;
                grid.VerticalAlignment = System.Windows.VerticalAlignment.Stretch;

                grid.Children.Add(userControl);
                Grid.SetColumn(userControl, 0);
                Grid.SetRow(userControl, 0);

                AddCustomTab(parentTabControl, name, grid);
            }
        }
        public static void ZoomInstrument(MouseWheelEventArgs e, Viewbox vb) {
            double delta = e.Delta;
            double factor = delta > 0 ? delta / 100 : (100 / -delta);

            vb.Width = vb.ActualWidth * factor;
            vb.Height = vb.ActualHeight * factor;

        }
        public static void SetScaleFactor(double scaleFactor,UserControl equi,Viewbox vb) {
            Point disPoint = new Point();
            disPoint.X = (scaleFactor - 1.0) * vb.ActualWidth / 2 ;
            disPoint.Y = (scaleFactor - 1.0) * vb.ActualHeight / 2;
            vb.Width = vb.ActualWidth * scaleFactor;
            vb.Height = vb.ActualHeight * scaleFactor;

        //setDisplacement(equi,disPoint);
        }
 public void InitializeComponent() {
     if (_contentLoaded) {
         return;
     }
     _contentLoaded = true;
     System.Windows.Application.LoadComponent(this, new System.Uri("/AppliDemo;component/UserControlStars.xaml", System.UriKind.Relative));
     this.userControlStars = ((System.Windows.Controls.UserControl)(this.FindName("userControlStars")));
     this.LayoutRoot = ((System.Windows.Controls.Viewbox)(this.FindName("LayoutRoot")));
     this.StarRegularPolygon = ((Microsoft.Expression.Shapes.RegularPolygon)(this.FindName("StarRegularPolygon")));
 }
Beispiel #9
0
 public void InitializeComponent() {
     if (_contentLoaded) {
         return;
     }
     _contentLoaded = true;
     System.Windows.Application.LoadComponent(this, new System.Uri("/LocalD;component/Pages/CameraPage.xaml", System.UriKind.Relative));
     this.CameraViewbox = ((System.Windows.Controls.Viewbox)(this.FindName("CameraViewbox")));
     this.ViewfinderCanvas = ((System.Windows.Controls.Canvas)(this.FindName("ViewfinderCanvas")));
     this.ViewfinderBrush = ((System.Windows.Media.VideoBrush)(this.FindName("ViewfinderBrush")));
 }
Beispiel #10
0
		public void Setup()
		{
			TestPanel.Width = 100;
			TestPanel.Height = 100;
			Child = new LayoutPoker ();
			Viewbox = new Viewbox();

			// The default template is applied when the item is added to the tree.
			TestPanel.Children.Add(Viewbox);
			TestPanel.Children.Clear();

			Viewbox.Child = Child;
		}
        private void ImageSourceChanged(DependencyPropertyChangedEventArgs dependencyPropertyChangedEventArgs)
        {
            ((Image)_currentInvisible.Child).Source = ImageSource;
            FadeImage(_currentInvisible, FadeDuration, 1.0);
            FadeImageInstant(_currentVisible, FadeDuration, 0.0);

            SetZIndex(_currentInvisible, FadeDuration, 1);
            SetZIndex(_currentVisible, FadeDuration, 2);

            Viewbox tmp = _currentInvisible;
            _currentInvisible = _currentVisible;
            _currentVisible = tmp;
        }
 public void InitializeComponent() {
     if (_contentLoaded) {
         return;
     }
     _contentLoaded = true;
     System.Windows.Application.LoadComponent(this, new System.Uri("/PruebaPaneles;component/View/NodoCuadrado.xaml", System.UriKind.Relative));
     this.rectangle1 = ((System.Windows.Shapes.Rectangle)(this.FindName("rectangle1")));
     this.vbIcono1 = ((System.Windows.Controls.Viewbox)(this.FindName("vbIcono1")));
     this.vbIcono2 = ((System.Windows.Controls.Viewbox)(this.FindName("vbIcono2")));
     this.btLinkDiagram = ((System.Windows.Controls.Button)(this.FindName("btLinkDiagram")));
     this.vbIcono3 = ((System.Windows.Controls.Viewbox)(this.FindName("vbIcono3")));
     this.btLink = ((System.Windows.Controls.Button)(this.FindName("btLink")));
     this.tbTitulo = ((System.Windows.Controls.TextBox)(this.FindName("tbTitulo")));
 }
        private void goNext()
        {
            string next = globalDatasingleton.getInstance().getNext();
            if (next == null) return;
            if (next == "") return;

            MyImage img = new MyImage();
            img.OriginalPath = next;
            img.Source = new BitmapImage(new Uri(next));
            Viewbox vb = new Viewbox { Width = 200, Child = img };

            LoadVBox(ref vb);
            //LoadVBox(ref next);
        }
 public void InitializeComponent() {
     if (_contentLoaded) {
         return;
     }
     _contentLoaded = true;
     System.Windows.Application.LoadComponent(this, new System.Uri("/PruebaPaneles;component/View/NodoTriangulo.xaml", System.UriKind.Relative));
     this.LayoutRoot = ((System.Windows.Controls.Grid)(this.FindName("LayoutRoot")));
     this.triangle = ((Microsoft.Expression.Shapes.RegularPolygon)(this.FindName("triangle")));
     this.lbTitulo = ((System.Windows.Controls.TextBox)(this.FindName("lbTitulo")));
     this.cvIcono1 = ((System.Windows.Controls.Viewbox)(this.FindName("cvIcono1")));
     this.cvIcono2 = ((System.Windows.Controls.Viewbox)(this.FindName("cvIcono2")));
     this.btLink = ((System.Windows.Controls.Button)(this.FindName("btLink")));
     this.btLinkDiagram = ((System.Windows.Controls.Button)(this.FindName("btLinkDiagram")));
 }
Beispiel #15
0
 public void InitializeComponent() {
     if (_contentLoaded) {
         return;
     }
     _contentLoaded = true;
     System.Windows.Application.LoadComponent(this, new System.Uri("/PruebaPaneles;component/View/NodoCirculo.xaml", System.UriKind.Relative));
     this.LayoutRoot = ((System.Windows.Controls.Grid)(this.FindName("LayoutRoot")));
     this.elipse = ((System.Windows.Shapes.Ellipse)(this.FindName("elipse")));
     this.tbTitulo = ((System.Windows.Controls.TextBox)(this.FindName("tbTitulo")));
     this.vbIcono1 = ((System.Windows.Controls.Viewbox)(this.FindName("vbIcono1")));
     this.vbIcono2 = ((System.Windows.Controls.Viewbox)(this.FindName("vbIcono2")));
     this.btLink = ((System.Windows.Controls.Button)(this.FindName("btLink")));
     this.btLinkDiagram = ((System.Windows.Controls.Button)(this.FindName("btLinkDiagram")));
 }
Beispiel #16
0
 public static System.Windows.Controls.MenuItem CreateMenuItem(string header, string path, SolidColorBrush fill = null)
 {
     var mi = new System.Windows.Controls.MenuItem();
     var sp = new StackPanel {Orientation = Orientation.Horizontal};
     var vb = new Viewbox {Width = 15, Height = 15, VerticalAlignment = VerticalAlignment.Center, Margin = new Thickness(8), Opacity = 0.8};
     if (fill == null) fill = Brushes.Black;
     var p = new System.Windows.Shapes.Path {Fill = fill, Data = Geometry.Parse(path)};
     vb.Child = p;
    
     sp.Children.Add(vb);
     sp.Children.Add(new TextBlock {FontFamily = Font, FontSize = FontSize, Text = header, Foreground = Brushes.Black});
     mi.Header = sp;
    // { Header = header, Tag = header, FontFamily = new FontFamily("Segoe360"), FontSize = 20 };
     return mi;
 }
        TimeSpan tsUnload = TimeSpan.FromSeconds(0.1); //Unload CollectionAnmInfoSource time span

        #endregion Fields

        #region Constructors

        public AnimationBase(UserControl userControl, Canvas canvas, Viewbox vbMain, Canvas canvasRoot)
        {
            userControlMap = userControl;
            CanvasMap = canvas;
            NameScope.SetNameScope(userControlMap, new NameScope());
            ListStoryboard = new List<Storyboard>();
            ListButton = new List<Button>();
            ListPath = new List<Path>();
            CollectionAnmInfo = new ObservableCollection<AnimationInfo>();
            CollectionAnmInfoSource = new ObservableCollection<AnimationInfo>();
            ViewBoxMap = vbMain;
            CanvasRootMap = canvasRoot;
            timerLoadAB.Elapsed += new ElapsedEventHandler(timerLoadAB_Elapsed);
            timerLoadAB.Interval = 150;
        }
Beispiel #18
0
        public DropContainer()
        {
            ObjectId = Practice.AssignObjectId();
            Actions = new List<ComAction>();
            Type = ObjectType.DropContainer;
            BorderBrush = Brushes.Black;
            BorderThickness = new Thickness(3);
            Viewbox = new Viewbox();
            Opacity = 0.3;

            this.AddObjectHandlers();

            var mainWin = DesignerMainWindow.GetInstance();
            SlideId = mainWin.GetCurrentSlideId();
            mainWin.canMainCanvas.SetObjectPositionOnCanvas(this, 0, 0);
        }
Beispiel #19
0
		public void VisualTree_RenderTransformSet()
		{
			var box = new Viewbox();
			var child = new LayoutPoker();
			box.Child = child;

			CreateAsyncTest(box,
				() => {
					/* Ensure that the box has been measured at least once */
				}, () => {
					var border = box.FindFirstChild<Border>();
					Assert.IsNotNull(border, "#1");
					Assert.AreNotEqual(DependencyProperty.UnsetValue, border.ReadLocalValue(Border.RenderTransformProperty), "#2");
					Assert.IsInstanceOfType<ScaleTransform> (border.RenderTransform, "#3");
				}
			);
		}
Beispiel #20
0
        public override void OnApplyTemplate()
        {
            base.OnApplyTemplate();
            _viewbox = Template.FindName(ViewboxTemplatePartName, this) as Viewbox;

            if (_child != null && _viewbox != null)
            {
                _viewbox.GotFocus += (sender, e) => OnActivate(EventArgs.Empty);
                if (_viewbox != null)
                {
                    _viewbox.Child = _child;
                    _child = null;
                }
            }

            CommandBindings.Add(new CommandBinding(CloseAction, Close));
        }
        public ViewManager(MainWindow window)
        {
            _window = window;
            _mainContainer = (Grid)window.FindName("mainGrid");
            _imageScrollBar = (ScrollBar)window.FindName("imageScrollBar");
            _progressScrollBar = (ScrollBar)window.FindName("progressScrollBar");
            _rotateTransform = (RotateTransform)window.FindName("displayRotateTransform");
            _imageTranslateTransform = (TranslateTransform)window.FindName("imageTranslateTransform");

            _comicImage = (Image)window.FindName("comicImage");

            /*
            // NOTE: keep this code as an example on how to monitor property changes
            // This code is required because WPF Image control does not have a ImageLoaded event.
            DependencyPropertyDescriptor dpd = DependencyPropertyDescriptor.FromProperty(Image.SourceProperty, typeof(Image));
            dpd.AddValueChanged(_comicImage, OnImageChanged);
            */

            _imageViewbox = (Viewbox)window.FindName("imageViewbox");
            _imageViewbox.SizeChanged += OnImageViewboxSizeChanged;

            _pixelMatrix = PresentationSource.FromVisual(_window).CompositionTarget.TransformToDevice;

            _portraitStoryboard = (Storyboard)_window.TryFindResource("portraitStoryboard");
            _landscapeStoryboard = (Storyboard)_window.TryFindResource("landscapeStoryboard");
            _portraitStoryboard.Completed += OnRotationStoryboardCompleted;
            _landscapeStoryboard.Completed += OnRotationStoryboardCompleted;

            _translateXStoryboard = (Storyboard)_window.TryFindResource("translateXStoryboard");
            _translateYStoryboard = (Storyboard)_window.TryFindResource("translateYStoryboard");
            _translateXDoubleAnimation = (DoubleAnimation)_translateXStoryboard.Children[0];
            _translateYDoubleAnimation = (DoubleAnimation)_translateYStoryboard.Children[0];

            // Assumes both X and Y double animation have the same duration
            TRANSLATE_DURATION = _translateXDoubleAnimation.Duration;

            _numberingContainer = (Border)window.FindName("numberingBorder");

            _imageScrollBarAnimation = new DoubleAnimation();
            _imageScrollBarAnimation.Duration = new Duration(TimeSpan.FromMilliseconds(300));
            _imageScrollBarAnimation.EasingFunction = new CubicEase() { EasingMode = EasingMode.EaseOut };

            //TODO: add gesture handling
            /*_window.PreviewMouseMove += _window_MouseMove;*/
        }
Beispiel #22
0
 public Item(Point center, Size extent, double angle, Selection selection)
 {
     //this.center = new Point(0.0, 0.0);
     //this.extent = new Size(50.0, 50.0);
     //this.angle = 0.0;
     stencil = new Tank();
     viewbox = new Viewbox();
     viewbox.StretchDirection = StretchDirection.Both;
     viewbox.Stretch = Stretch.Fill;
     viewbox.MaxWidth = 400.0;
     viewbox.MaxHeight = 400.0;
     viewbox.Child = stencil;
     this.center = center;
     this.extent = extent;
     this.angle = angle;
     Children.Add(viewbox);
     Update();
 }
        public EffectShader(int scale, String FilenamePS)
        {

            this.scale = scale;

            pShader = new PixelShader();
            pShader.UriSource = new Uri(FilenamePS);
            lcShader = new LenseCorrectionShader(pShader);

            img = new Image();
            img.Stretch = Stretch.None;
            img.Effect = lcShader;
                    
            viewbox = new Viewbox();
            viewbox.Stretch = Stretch.Fill;

            viewbox.Child = img;
        }
        /// <summary>
        /// The arrow demo is uses an adaption of Chales Petzold's WPF arrow class 
        /// http://charlespetzold.com/blog/2007/04/191200.html to be used as custom MapSape
        /// </summary>
        /// <param name="layer"></param>
        public void AddPinWithLabel(ShapeLayer layer)
        {
            // text and symbol as two shapes
            Control pin = new Pin();
            pin.Width = pin.Height = 30;
            ShapeCanvas.SetLocation(pin, new Point(8.4, 49));
            ShapeCanvas.SetAnchor(pin, LocationAnchor.RightBottom);
            layer.Shapes.Add(pin);

            TextBlock tb = new TextBlock { Text = "Hello" };
            tb.Background = new SolidColorBrush(Colors.White);
            tb.Foreground = new SolidColorBrush(Colors.Black);
            ShapeCanvas.SetLocation(tb, new Point(8.4, 49));
            ShapeCanvas.SetAnchor(tb, LocationAnchor.LeftTop);
            layer.Shapes.Add(tb);

            // text with symbol in a view box
            var grid = new Grid();
            grid.RowDefinitions.Add(new RowDefinition { Height = new GridLength(50) });
            grid.RowDefinitions.Add(new RowDefinition { Height = new GridLength(50) });
            grid.ColumnDefinitions.Add(new ColumnDefinition { Width = new GridLength(50) });

            var viewBox = new Viewbox() { Stretch = Stretch.Uniform };
            pin = new Cube();
            viewBox.Child = pin;
            Grid.SetRow(viewBox, 0);
            grid.Children.Add(viewBox);

            viewBox = new Viewbox() { Stretch = Stretch.Uniform };
            tb = new TextBlock { Text = "Hello" };
            tb.Background = new SolidColorBrush(Colors.White);
            tb.Foreground = new SolidColorBrush(Colors.Black);
            viewBox.Child = tb;
            Grid.SetRow(viewBox, 1);
            grid.Children.Add(viewBox);

            ShapeCanvas.SetLocation(grid, new Point(8.5, 49));
            ShapeCanvas.SetScaleFactor(grid, .1);
            layer.Shapes.Add(grid);
        }
Beispiel #25
0
        private Viewbox GetImageSource()
        {
            var viewbox = new Viewbox();

            viewbox.Stretch = Stretch.Uniform;

            Canvas canvas = null;

            var pathName = PathName;
            if (!string.IsNullOrWhiteSpace(pathName))
            {
                canvas = System.Windows.Application.Current.FindResource(pathName) as Canvas;
                if (canvas != null)
                {
                    // Clone to prevent the same instance to be used multiple times
                    canvas = canvas.Clone();

                    if (canvas != null && Foreground != Brushes.Transparent)
                    {
                        foreach (var child in canvas.Children)
                        {
                            var path = child as Path;
                            if (path != null)
                            {
                                path.Fill = Foreground;
                            }
                        }
                    }
                }
                else
                {
                    Log.Warning("Could not find a resource named '{0}'", pathName);
                }
            }

            viewbox.Child = canvas;

            return viewbox;
        }
 public WeatherPage()
 {
     InitializeComponent();
     try
     {
         WeatherService weather = new WeatherService("Russia", "Ekaterinburg");
         FBWeather_1.Text = weather.country;
         FBWeather_2.Text = weather.city;
         FBWeather_3.Text = weather.temperature;
         FBWeather_4.Text = weather.relativeHumidity;
         FBWeather_5.Text = weather.pressure;
     }
     catch
     {
         Viewbox vBox = new Viewbox();
         vBox.Margin = new System.Windows.Thickness(3);
         TextBlock tBxox = new TextBlock();
         tBxox.Foreground = System.Windows.Media.Brushes.Red;
         tBxox.Text = "Не удалось подключиться к сервису: \"Погода\"";
         vBox.Child = tBxox;
         Box.Child = vBox;
     }
 }
Beispiel #27
0
        // Token: 0x06004E77 RID: 20087 RVA: 0x00160E44 File Offset: 0x0015F044
        private Size MeasureArrangeHelper(Size inputSize)
        {
            ImageSource source = this.Source;
            Size        size   = default(Size);

            if (source == null)
            {
                return(size);
            }
            try
            {
                Image.UpdateBaseUri(this, source);
                size = source.Size;
            }
            catch (Exception errorException)
            {
                base.SetCurrentValue(Image.SourceProperty, null);
                base.RaiseEvent(new ExceptionRoutedEventArgs(Image.ImageFailedEvent, this, errorException));
            }
            Size size2 = Viewbox.ComputeScaleFactor(inputSize, size, this.Stretch, this.StretchDirection);

            return(new Size(size.Width * size2.Width, size.Height * size2.Height));
        }
Beispiel #28
0
        private void LoadOrbControl()
        {
            Viewbox viewBox = new Viewbox();

            var osk = new HyperSearch.OrbKeyboard() { Width = 800, Height = 600 };

            osk.AttachedTextBox = txt;
            osk.OnOskKeyPressed += OnOskKeyPressed;

            viewBox.Child = osk;

            var buttonTemplateXamlFilePath = Global.BuildFilePathInResourceDir("OnScreenKeyboardButtonTemplate.xaml");

            if (!File.Exists(buttonTemplateXamlFilePath)) throw new FileNotFoundException("Failed to find the on-screen keyboard's button template XAML file.", "Resources\\OnScreenKeyboardButtonTemplate.xaml");

            osk.InitFromButtonTemplate(File.ReadAllText(buttonTemplateXamlFilePath));

            container.Child = viewBox;

            Util.SetTimeout(80, new Action(() => osk.AnimateOpen()));

            Util.SetTimeout(90, new Action(() => osk.Focus()));
        }
Beispiel #29
0
        private Viewbox GetImageSource()
        {
            var viewbox = new Viewbox();

            viewbox.Stretch = Stretch.Uniform;

            // TODO: Question: should we clone or not? 
            var canvas = System.Windows.Application.Current.FindResource(PathName) as Canvas;
            if (canvas != null && Foreground != Brushes.Transparent)
            {
                foreach (var child in canvas.Children)
                {
                    var path = child as Path;
                    if (path != null)
                    {
                        path.Fill = Foreground;
                    }
                }
            }
            viewbox.Child = canvas;

            return viewbox;
        }
Beispiel #30
0
    public static void AddPageInViewBox(TabControl tabControl, string tapName, Page page, bool atFirst = true)
    {
        Frame frame = new Frame();

        frame.Width = page.Width;
        frame.Height = page.Height;

        frame.Content = page;

        Viewbox viewBox = new Viewbox();
        viewBox.Child = frame;
        viewBox.Width = double.NaN;
        viewBox.Height = double.NaN;

        TabItem tabItem = new TabItem();
        tabItem.Header = tapName;
        tabItem.Content = viewBox;

        if (atFirst)
            tabControl.Items.Insert(0, tabItem);
        else
            tabControl.Items.Add(tabItem);
    }
        private void initializeWindow()
        {
            // Measures
            h = MainWindow.window.myWindow.getHeight();
            w = MainWindow.window.myWindow.getWidth();

            // Log In Button
            initializeButton(logIn, "LogInButton", 0.08, 0.05, 0.67, 0.65);
            // UserName Button
            initializeButton(UserNameB, "UserName", 0.15, 0.05, 0.59, 0.32);
            // Password Button
            initializeButton(PasswordB, "Password", 0.15, 0.05, 0.59, 0.53);

            // Initialize TextBox
            userName = new TextBox();
            userNameV = new Viewbox();
            userName.VerticalContentAlignment = VerticalAlignment.Center;
            initializeTextBox(userNameV, userName, 0.15, 0.05, 0.59, 0.32);

            password = new PasswordBox();

            passwordV = new Viewbox();
            password.VerticalContentAlignment = VerticalAlignment.Center;
            // initializeTextBox(passwordV, password, 0.15, 0.05, 0.59, 0.53);

            passwordV.Child = password;
            password.FontSize = 20;
            passwordV.Width = w * 0.15;
            passwordV.Height = h * 0.05;
            password.Width = w * 0.15;
            password.Height = h * 0.05;
            LogInCanvas.Children.Add(passwordV);
            Canvas.SetTop(passwordV, h * 0.59);
            Canvas.SetLeft(passwordV, w * 0.53);
            password.IsEnabled = false;
            password.Visibility = Visibility.Hidden;
        }
Beispiel #32
0
        void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target)
        {
            switch (connectionId)
            {
            case 1:
                this.btnPointer = ((System.Windows.Controls.RadioButton)(target));
                return;

            case 2:
                this.btnDot = ((System.Windows.Controls.RadioButton)(target));
                return;

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

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

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

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

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

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

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

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

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

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

            case 13:
                this.canvas = ((DrawingBoard.DrawingControl.CartesianCanvas)(target));
                return;

            case 14:
                this.scale = ((System.Windows.Media.ScaleTransform)(target));
                return;

            case 15:
                this.translate = ((System.Windows.Media.TranslateTransform)(target));
                return;

            case 16:
                this.rootCanvas = ((DrawingBoard.DrawingControl.ZoomableCanvas)(target));
                return;

            case 17:
                this.topCanvas = ((System.Windows.Controls.Canvas)(target));
                return;

            case 18:
                this.rectSelection = ((System.Windows.Shapes.Rectangle)(target));
                return;

            case 19:
                this.CanvasRoot = ((System.Windows.Controls.Canvas)(target));

            #line 111 "..\..\..\DrawingControl\DrawingBoard.xaml"
                this.CanvasRoot.MouseWheel += new System.Windows.Input.MouseWheelEventHandler(this.CanvasMain_MouseWheel);

            #line default
            #line hidden
                return;

            case 20:
                this.ViewBoxMain = ((System.Windows.Controls.Viewbox)(target));
                return;

            case 21:
                this.CanvasMain = ((System.Windows.Controls.Canvas)(target));

            #line 121 "..\..\..\DrawingControl\DrawingBoard.xaml"
                this.CanvasMain.MouseWheel += new System.Windows.Input.MouseWheelEventHandler(this.CanvasMain_MouseWheel);

            #line default
            #line hidden

            #line 122 "..\..\..\DrawingControl\DrawingBoard.xaml"
                this.CanvasMain.MouseMove += new System.Windows.Input.MouseEventHandler(this.CanvasMain_MouseMove);

            #line default
            #line hidden

            #line 123 "..\..\..\DrawingControl\DrawingBoard.xaml"
                this.CanvasMain.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.CanvasMain_MouseDown);

            #line default
            #line hidden

            #line 124 "..\..\..\DrawingControl\DrawingBoard.xaml"
                this.CanvasMain.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.CanvasMain_MouseUp);

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

            #line 9 "..\..\MainPage.xaml"
                ((TurakasTest.MainPage)(target)).Loaded += new System.Windows.RoutedEventHandler(this.OnLoaded);

            #line default
            #line hidden
                return;

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

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

            #line 28 "..\..\MainPage.xaml"
                this.btnEndGame.Click += new System.Windows.RoutedEventHandler(this.btnEndGame_Click);

            #line default
            #line hidden
                return;

            case 4:
                this.vbxTrump = ((System.Windows.Controls.Viewbox)(target));
                return;

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

            case 6:
                this.lbxMsg = ((System.Windows.Controls.ListBox)(target));
                return;

            case 7:
                this.gridPlayer4 = ((System.Windows.Controls.Grid)(target));
                return;

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

            case 9:
                this.rect4Action = ((System.Windows.Shapes.Rectangle)(target));
                return;

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

            case 11:
                this.gridPlayer3 = ((System.Windows.Controls.Grid)(target));
                return;

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

            case 13:
                this.rect3Action = ((System.Windows.Shapes.Rectangle)(target));
                return;

            case 14:
                this.pl3CardImage = ((System.Windows.Controls.Image)(target));
                return;

            case 15:
                this.gridPlayer2 = ((System.Windows.Controls.Grid)(target));
                return;

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

            case 17:
                this.rect2Action = ((System.Windows.Shapes.Rectangle)(target));
                return;

            case 18:
                this.pl2CardImage = ((System.Windows.Controls.Image)(target));
                return;

            case 19:
                this.gridPlayer5 = ((System.Windows.Controls.Grid)(target));
                return;

            case 20:
                this.player5name = ((System.Windows.Controls.TextBlock)(target));
                return;

            case 21:
                this.rect5Action = ((System.Windows.Shapes.Rectangle)(target));
                return;

            case 22:
                this.pl5CardImage = ((System.Windows.Controls.Image)(target));
                return;

            case 23:
                this.gridPlayer6 = ((System.Windows.Controls.Grid)(target));
                return;

            case 24:
                this.player6name = ((System.Windows.Controls.TextBlock)(target));
                return;

            case 25:
                this.rect6Action = ((System.Windows.Shapes.Rectangle)(target));
                return;

            case 26:
                this.pl6CardImage = ((System.Windows.Controls.Image)(target));
                return;

            case 27:
                this.GameAreaGrid = ((System.Windows.Controls.Grid)(target));
                return;

            case 28:
                this.stkpMove1 = ((System.Windows.Controls.StackPanel)(target));
                return;

            case 29:
                this.move1 = ((System.Windows.Controls.Image)(target));
                return;

            case 30:
                this.stkpMove11 = ((System.Windows.Controls.StackPanel)(target));
                return;

            case 31:
                this.hit1 = ((System.Windows.Controls.Image)(target));
                return;

            case 32:
                this.stkpMove2 = ((System.Windows.Controls.StackPanel)(target));
                return;

            case 33:
                this.move2 = ((System.Windows.Controls.Image)(target));
                return;

            case 34:
                this.stkpMove21 = ((System.Windows.Controls.StackPanel)(target));
                return;

            case 35:
                this.hit2 = ((System.Windows.Controls.Image)(target));
                return;

            case 36:
                this.stkpMove3 = ((System.Windows.Controls.StackPanel)(target));
                return;

            case 37:
                this.move3 = ((System.Windows.Controls.Image)(target));
                return;

            case 38:
                this.stkpMove31 = ((System.Windows.Controls.StackPanel)(target));
                return;

            case 39:
                this.hit3 = ((System.Windows.Controls.Image)(target));
                return;

            case 40:
                this.stkpMove4 = ((System.Windows.Controls.StackPanel)(target));
                return;

            case 41:
                this.move4 = ((System.Windows.Controls.Image)(target));
                return;

            case 42:
                this.stkpMove41 = ((System.Windows.Controls.StackPanel)(target));
                return;

            case 43:
                this.hit4 = ((System.Windows.Controls.Image)(target));
                return;

            case 44:
                this.stkpMove5 = ((System.Windows.Controls.StackPanel)(target));
                return;

            case 45:
                this.move5 = ((System.Windows.Controls.Image)(target));
                return;

            case 46:
                this.stkpMove51 = ((System.Windows.Controls.StackPanel)(target));
                return;

            case 47:
                this.hit5 = ((System.Windows.Controls.Image)(target));
                return;

            case 48:
                this.stkpMove6 = ((System.Windows.Controls.StackPanel)(target));
                return;

            case 49:
                this.move6 = ((System.Windows.Controls.Image)(target));
                return;

            case 50:
                this.stkpMove61 = ((System.Windows.Controls.StackPanel)(target));
                return;

            case 51:
                this.hit6 = ((System.Windows.Controls.Image)(target));
                return;

            case 52:
                this.frameGameEnd = ((System.Windows.Controls.StackPanel)(target));
                return;

            case 53:
                this.tbxEndInfo = ((System.Windows.Controls.TextBlock)(target));
                return;

            case 54:
                this.tbxEndLooser = ((System.Windows.Controls.TextBlock)(target));
                return;

            case 55:
                this.gridPlayer1 = ((System.Windows.Controls.Grid)(target));
                return;

            case 56:
                this.player1name = ((System.Windows.Controls.TextBlock)(target));
                return;

            case 57:
                this.rect1Action = ((System.Windows.Shapes.Rectangle)(target));
                return;

            case 58:
                this.gwPl1Hand = ((System.Windows.Controls.ListView)(target));

            #line 277 "..\..\MainPage.xaml"
                this.gwPl1Hand.MouseDoubleClick += new System.Windows.Input.MouseButtonEventHandler(this.Card_Clicked);

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

            case 2:
                this.ProfileCanvas = ((System.Windows.Controls.Canvas)(target));
                return;

            case 3:
                this.selected = ((System.Windows.Controls.Image)(target));
                return;

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

            #line 14 "..\..\profile.xaml"
                this.sale.Click += new System.Windows.RoutedEventHandler(this.ButtonOnClick);

            #line default
            #line hidden
                return;

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

            #line 16 "..\..\profile.xaml"
                this.stocks.Click += new System.Windows.RoutedEventHandler(this.ButtonOnClick);

            #line default
            #line hidden
                return;

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

            #line 19 "..\..\profile.xaml"
                this.dados.Click += new System.Windows.RoutedEventHandler(this.ButtonOnClick);

            #line default
            #line hidden
                return;

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

            #line 22 "..\..\profile.xaml"
                this.logOut.Click += new System.Windows.RoutedEventHandler(this.ButtonOnClick);

            #line default
            #line hidden
                return;

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

            #line 25 "..\..\profile.xaml"
                this.settings.Click += new System.Windows.RoutedEventHandler(this.ButtonOnClick);

            #line default
            #line hidden
                return;

            case 9:
                this.lojaView = ((System.Windows.Controls.Viewbox)(target));
                return;

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

            case 11:
                this.funcView = ((System.Windows.Controls.Viewbox)(target));
                return;

            case 12:
                this.funcData = ((System.Windows.Controls.TextBlock)(target));
                return;
            }
            this._contentLoaded = true;
        }
        void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target)
        {
            switch (connectionId)
            {
            case 1:

            #line 6 "..\..\MainWindow.xaml"
                ((CenterControlEditor.MainWindow)(target)).Loaded += new System.Windows.RoutedEventHandler(this.InitUI);

            #line default
            #line hidden
                return;

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

            #line 17 "..\..\MainWindow.xaml"
                this.Header.MouseMove += new System.Windows.Input.MouseEventHandler(this.MoveThis);

            #line default
            #line hidden
                return;

            case 3:
                this.MiniButton = ((CenterControlEditor.Controls.SettingButton)(target));
                return;

            case 4:
                this.MaxButton = ((CenterControlEditor.Controls.SettingButton)(target));
                return;

            case 5:
                this.CloseButton = ((CenterControlEditor.Controls.SettingButton)(target));
                return;

            case 6:
                this.ToolBar = ((System.Windows.Controls.Grid)(target));
                return;

            case 7:
                this.TitleBar = ((System.Windows.Controls.Grid)(target));
                return;

            case 8:
                this.Title = ((System.Windows.Controls.Viewbox)(target));
                return;

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

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

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

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

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

            case 14:
                this.Content1 = ((System.Windows.Controls.ContentControl)(target));
                return;

            case 15:
                this.AreasEditor = ((CenterControlEditor.Controls.AreaContainer)(target));
                return;

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

            case 17:
                this.Content2 = ((System.Windows.Controls.ContentControl)(target));
                return;

            case 18:
                this.ActionEditor = ((CenterControlEditor.Controls.ActionContainer)(target));
                return;

            case 19:
                this.Opration = ((System.Windows.Controls.Grid)(target));
                return;

            case 20:
                this.Content3 = ((System.Windows.Controls.ContentControl)(target));
                return;

            case 21:
                this.OprationEditor = ((CenterControlEditor.Controls.OprationContainer)(target));
                return;
            }
            this._contentLoaded = true;
        }
Beispiel #36
0
 public void InitializeComponent()
 {
     if (_contentLoaded)
     {
         return;
     }
     _contentLoaded = true;
     System.Windows.Application.LoadComponent(this, new System.Uri("/Galatee.Silverlight;component/Accueil/Demande/FrmInitRemboursementTravaux.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_Copy             = ((System.Windows.Controls.TabItem)(this.FindName("tabPieceJointe_Copy")));
     this.Vwb                 = ((System.Windows.Controls.Viewbox)(this.FindName("Vwb")));
     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.btn_RechercheClient = ((System.Windows.Controls.Button)(this.FindName("btn_RechercheClient")));
     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")));
     this.Txt_Motif           = ((System.Windows.Controls.TextBox)(this.FindName("Txt_Motif")));
 }
Beispiel #37
0
        void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target)
        {
            switch (connectionId)
            {
            case 1:

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

            #line default
            #line hidden
                return;

            case 2:
                this.StartMenuItem = ((System.Windows.Controls.MenuItem)(target));

            #line 57 "..\..\..\UI\MainWindow.xaml"
                this.StartMenuItem.Click += new System.Windows.RoutedEventHandler(this.StartMenuItem_Click);

            #line default
            #line hidden
                return;

            case 3:
                this.StopMenuItem = ((System.Windows.Controls.MenuItem)(target));

            #line 58 "..\..\..\UI\MainWindow.xaml"
                this.StopMenuItem.Click += new System.Windows.RoutedEventHandler(this.StopMenuItem_Click);

            #line default
            #line hidden
                return;

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

            #line 59 "..\..\..\UI\MainWindow.xaml"
                this.ScrollMenuItem.Click += new System.Windows.RoutedEventHandler(this.ScrollMenuItem_Click);

            #line default
            #line hidden
                return;

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

            #line 62 "..\..\..\UI\MainWindow.xaml"
                this.OpenMenuItem.Click += new System.Windows.RoutedEventHandler(this.OpenMenuItem_Click);

            #line default
            #line hidden
                return;

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

            #line 65 "..\..\..\UI\MainWindow.xaml"
                this.ConfigurationMenuItem.Click += new System.Windows.RoutedEventHandler(this.ConfigurationMenuItem_Click);

            #line default
            #line hidden
                return;

            case 7:
                this.CountTextBlock = ((System.Windows.Controls.TextBlock)(target));
                return;

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

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

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

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

            case 12:
                this.LogListBox = ((System.Windows.Controls.ListBox)(target));
                return;

            case 13:
                this.ViewViewBox = ((System.Windows.Controls.Viewbox)(target));
                return;

            case 14:
                this.WaveListBox = ((WaveApplication.UI.NotifyableListBox)(target));
                return;
            }
            this._contentLoaded = true;
        }
        void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target)
        {
            switch (connectionId)
            {
            case 1:

            #line 8 "..\..\..\Fenetres\Statistiques.xaml"
                ((ProjetWPF.Fenetres.Statistiques)(target)).SizeChanged += new System.Windows.SizeChangedEventHandler(this.UserControl_SizeChanged);

            #line default
            #line hidden
                return;

            case 2:
                this.Row2 = ((System.Windows.Controls.ColumnDefinition)(target));
                return;

            case 3:
                this.ToggTempurature = ((MahApps.Metro.Controls.ToggleSwitch)(target));

            #line 23 "..\..\..\Fenetres\Statistiques.xaml"
                this.ToggTempurature.Click += new System.EventHandler <System.Windows.RoutedEventArgs>(this.Togg_Click);

            #line default
            #line hidden
                return;

            case 4:
                this.ToggPression = ((MahApps.Metro.Controls.ToggleSwitch)(target));

            #line 27 "..\..\..\Fenetres\Statistiques.xaml"
                this.ToggPression.Click += new System.EventHandler <System.Windows.RoutedEventArgs>(this.Togg_Click);

            #line default
            #line hidden
                return;

            case 5:
                this.ToggHumidite = ((MahApps.Metro.Controls.ToggleSwitch)(target));

            #line 31 "..\..\..\Fenetres\Statistiques.xaml"
                this.ToggHumidite.Click += new System.EventHandler <System.Windows.RoutedEventArgs>(this.Togg_Click);

            #line default
            #line hidden
                return;

            case 6:
                this.ToggVent = ((MahApps.Metro.Controls.ToggleSwitch)(target));

            #line 35 "..\..\..\Fenetres\Statistiques.xaml"
                this.ToggVent.Click += new System.EventHandler <System.Windows.RoutedEventArgs>(this.Togg_Click);

            #line default
            #line hidden
                return;

            case 7:
                this.ToggVisibilite = ((MahApps.Metro.Controls.ToggleSwitch)(target));

            #line 39 "..\..\..\Fenetres\Statistiques.xaml"
                this.ToggVisibilite.Click += new System.EventHandler <System.Windows.RoutedEventArgs>(this.Togg_Click);

            #line default
            #line hidden
                return;

            case 8:
                this.ToggPrecipitation = ((MahApps.Metro.Controls.ToggleSwitch)(target));

            #line 43 "..\..\..\Fenetres\Statistiques.xaml"
                this.ToggPrecipitation.Click += new System.EventHandler <System.Windows.RoutedEventArgs>(this.Togg_Click);

            #line default
            #line hidden
                return;

            case 9:
                this.ToggNebulosite = ((MahApps.Metro.Controls.ToggleSwitch)(target));

            #line 47 "..\..\..\Fenetres\Statistiques.xaml"
                this.ToggNebulosite.Click += new System.EventHandler <System.Windows.RoutedEventArgs>(this.Togg_Click);

            #line default
            #line hidden
                return;

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

            case 11:
                this.algerie = ((ProjetWPF.Fenetres.CarteInteractive)(target));
                return;

            case 12:

            #line 75 "..\..\..\Fenetres\Statistiques.xaml"
                ((System.Windows.Controls.Slider)(target)).ValueChanged += new System.Windows.RoutedPropertyChangedEventHandler <double>(this.Slider_ValueChanged);

            #line default
            #line hidden
                return;
            }
            this._contentLoaded = true;
        }
 public void InitializeComponent()
 {
     if (_contentLoaded)
     {
         return;
     }
     _contentLoaded = true;
     System.Windows.Application.LoadComponent(this, new System.Uri("/Galatee.Silverlight;component/Devis/FrmVerificationTransfertClient.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.btn_transmetre                = ((System.Windows.Controls.Button)(this.FindName("btn_transmetre")));
     this.lbl_RefecenceBranchement      = ((System.Windows.Controls.Label)(this.FindName("lbl_RefecenceBranchement")));
     this.txt_Ref_Branchement           = ((System.Windows.Controls.TextBox)(this.FindName("txt_Ref_Branchement")));
     this.lbl_RefecenceBranchement_Copy = ((System.Windows.Controls.Label)(this.FindName("lbl_RefecenceBranchement_Copy")));
     this.txt_ordre                        = ((System.Windows.Controls.TextBox)(this.FindName("txt_ordre")));
     this.tabItemTransfert                 = ((System.Windows.Controls.TabItem)(this.FindName("tabItemTransfert")));
     this.label2                           = ((System.Windows.Controls.Label)(this.FindName("label2")));
     this.txtSiteTransfert                 = ((System.Windows.Controls.TextBox)(this.FindName("txtSiteTransfert")));
     this.label3                           = ((System.Windows.Controls.Label)(this.FindName("label3")));
     this.txtCentreTransfert               = ((System.Windows.Controls.TextBox)(this.FindName("txtCentreTransfert")));
     this.Txt_CodeRegroupement             = ((System.Windows.Controls.TextBox)(this.FindName("Txt_CodeRegroupement")));
     this.lbl_CodeRegroupement_Copy        = ((System.Windows.Controls.Label)(this.FindName("lbl_CodeRegroupement_Copy")));
     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.label17_Copy1                    = ((System.Windows.Controls.Label)(this.FindName("label17_Copy1")));
     this.txt_Adresse                      = ((System.Windows.Controls.TextBox)(this.FindName("txt_Adresse")));
     this.label17_Copy2                    = ((System.Windows.Controls.Label)(this.FindName("label17_Copy2")));
     this.txt_Nina                         = ((System.Windows.Controls.TextBox)(this.FindName("txt_Nina")));
     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_CodeRistoune                 = ((System.Windows.Controls.TextBox)(this.FindName("Txt_CodeRistoune")));
     this.lbl_Ristourne                    = ((System.Windows.Controls.Label)(this.FindName("lbl_Ristourne")));
     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.tabItem3                         = ((System.Windows.Controls.TabItem)(this.FindName("tabItem3")));
     this.tab4_cbo_Operation               = ((System.Windows.Controls.ComboBox)(this.FindName("tab4_cbo_Operation")));
     this.label66                          = ((System.Windows.Controls.Label)(this.FindName("label66")));
     this.tab4_dataGrid2                   = ((System.Windows.Controls.DataGrid)(this.FindName("tab4_dataGrid2")));
     this.tab4_dataGrid1                   = ((System.Windows.Controls.DataGrid)(this.FindName("tab4_dataGrid1")));
     this.tab4_txt_TotalDebit              = ((System.Windows.Controls.TextBox)(this.FindName("tab4_txt_TotalDebit")));
     this.tab4_txt_TotalCredit             = ((System.Windows.Controls.TextBox)(this.FindName("tab4_txt_TotalCredit")));
     this.tab4_txt_balance                 = ((System.Windows.Controls.TextBox)(this.FindName("tab4_txt_balance")));
     this.label68                          = ((System.Windows.Controls.Label)(this.FindName("label68")));
     this.label69                          = ((System.Windows.Controls.Label)(this.FindName("label69")));
     this.label70                          = ((System.Windows.Controls.Label)(this.FindName("label70")));
     this.tab4_dataGrid3                   = ((System.Windows.Controls.DataGrid)(this.FindName("tab4_dataGrid3")));
     this.tab4_cbo_Periode                 = ((System.Windows.Controls.ComboBox)(this.FindName("tab4_cbo_Periode")));
     this.label66_Copy                     = ((System.Windows.Controls.Label)(this.FindName("label66_Copy")));
     this.tabItem4                         = ((System.Windows.Controls.TabItem)(this.FindName("tabItem4")));
     this.tabControl3                      = ((System.Windows.Controls.TabControl)(this.FindName("tabControl3")));
     this.tabItem9                         = ((System.Windows.Controls.TabItem)(this.FindName("tabItem9")));
     this.tab5_txt_NumCompteur             = ((System.Windows.Controls.TextBox)(this.FindName("tab5_txt_NumCompteur")));
     this.tab5_txt_MarqueCompteur          = ((System.Windows.Controls.TextBox)(this.FindName("tab5_txt_MarqueCompteur")));
     this.tab5_txt_LibelleDigit            = ((System.Windows.Controls.TextBox)(this.FindName("tab5_txt_LibelleDigit")));
     this.tab5_Chk_CoefMultiplication      = ((System.Windows.Controls.CheckBox)(this.FindName("tab5_Chk_CoefMultiplication")));
     this.tab5_txt_CoefDeMultiplication    = ((System.Windows.Controls.TextBox)(this.FindName("tab5_txt_CoefDeMultiplication")));
     this.lbl_NumeroCompteur               = ((System.Windows.Controls.Label)(this.FindName("lbl_NumeroCompteur")));
     this.lbl_AnneFabrication              = ((System.Windows.Controls.Label)(this.FindName("lbl_AnneFabrication")));
     this.tab5_txt_AnnefabricCompteur      = ((System.Windows.Controls.TextBox)(this.FindName("tab5_txt_AnnefabricCompteur")));
     this.lbl_typeCompteur                 = ((System.Windows.Controls.Label)(this.FindName("lbl_typeCompteur")));
     this.lbl_Marque                       = ((System.Windows.Controls.Label)(this.FindName("lbl_Marque")));
     this.label76                          = ((System.Windows.Controls.Label)(this.FindName("label76")));
     this.tab5_txt_LibelleTypeCompteur     = ((System.Windows.Controls.TextBox)(this.FindName("tab5_txt_LibelleTypeCompteur")));
     this.lbl_Diametre                     = ((System.Windows.Controls.Label)(this.FindName("lbl_Diametre")));
     this.tab5_txt_LibelleDiametreCompteur = ((System.Windows.Controls.TextBox)(this.FindName("tab5_txt_LibelleDiametreCompteur")));
     this.lbl_RegroupementCompteur_Copy4   = ((System.Windows.Controls.Label)(this.FindName("lbl_RegroupementCompteur_Copy4")));
     this.lbl_RegroupementCompteur_Copy5   = ((System.Windows.Controls.Label)(this.FindName("lbl_RegroupementCompteur_Copy5")));
     this.tab5_txt_DateMiseEnService       = ((System.Windows.Controls.TextBox)(this.FindName("tab5_txt_DateMiseEnService")));
     this.tab5_txt_DateFinServce           = ((System.Windows.Controls.TextBox)(this.FindName("tab5_txt_DateFinServce")));
     this.tabItem10                        = ((System.Windows.Controls.TabItem)(this.FindName("tabItem10")));
     this.tab5_Stab2dataGrid2              = ((System.Windows.Controls.DataGrid)(this.FindName("tab5_Stab2dataGrid2")));
     this.dtgCompteur                      = ((System.Windows.Controls.DataGrid)(this.FindName("dtgCompteur")));
     this.tabItemBranchement               = ((System.Windows.Controls.TabItem)(this.FindName("tabItemBranchement")));
     this.lbl_diametre                     = ((System.Windows.Controls.Label)(this.FindName("lbl_diametre")));
     this.Txt_LibelleTypeBrt               = ((System.Windows.Controls.TextBox)(this.FindName("Txt_LibelleTypeBrt")));
     this.lbl_QuartierDuPoste              = ((System.Windows.Controls.Label)(this.FindName("lbl_QuartierDuPoste")));
     this.Txt_LibelleQuartierPoste         = ((System.Windows.Controls.TextBox)(this.FindName("Txt_LibelleQuartierPoste")));
     this.lbl_Depart                       = ((System.Windows.Controls.Label)(this.FindName("lbl_Depart")));
     this.Txt_LibelleDepartHTA             = ((System.Windows.Controls.TextBox)(this.FindName("Txt_LibelleDepartHTA")));
     this.Txt_AdresseElectrique            = ((System.Windows.Controls.TextBox)(this.FindName("Txt_AdresseElectrique")));
     this.lbl_Codification                 = ((System.Windows.Controls.Label)(this.FindName("lbl_Codification")));
     this.lbl_Depart_Copy                  = ((System.Windows.Controls.Label)(this.FindName("lbl_Depart_Copy")));
     this.Txt_LibellePosteSource           = ((System.Windows.Controls.TextBox)(this.FindName("Txt_LibellePosteSource")));
     this.lbl_QuartierDuPoste_Copy         = ((System.Windows.Controls.Label)(this.FindName("lbl_QuartierDuPoste_Copy")));
     this.Txt_LibellePosteTransformateur   = ((System.Windows.Controls.TextBox)(this.FindName("Txt_LibellePosteTransformateur")));
     this.lbl_QuartierDuPoste_Copy1        = ((System.Windows.Controls.Label)(this.FindName("lbl_QuartierDuPoste_Copy1")));
     this.Txt_LibelleDepartBt              = ((System.Windows.Controls.TextBox)(this.FindName("Txt_LibelleDepartBt")));
     this.Txt_NeoudFinal                   = ((System.Windows.Controls.TextBox)(this.FindName("Txt_NeoudFinal")));
     this.lbl_NoeudFinal                   = ((System.Windows.Controls.Label)(this.FindName("lbl_NoeudFinal")));
     this.TxtLongitude                     = ((System.Windows.Controls.TextBox)(this.FindName("TxtLongitude")));
     this.lbl_longitude                    = ((System.Windows.Controls.Label)(this.FindName("lbl_longitude")));
     this.TxtLatitude                      = ((System.Windows.Controls.TextBox)(this.FindName("TxtLatitude")));
     this.lbl_latitude                     = ((System.Windows.Controls.Label)(this.FindName("lbl_latitude")));
     this.lDistance                        = ((System.Windows.Controls.Label)(this.FindName("lDistance")));
     this.Txt_Distance                     = ((System.Windows.Controls.TextBox)(this.FindName("Txt_Distance")));
     this.lDistance_Copy                   = ((System.Windows.Controls.Label)(this.FindName("lDistance_Copy")));
     this.Txt_PuissanceInstalle            = ((System.Windows.Controls.TextBox)(this.FindName("Txt_PuissanceInstalle")));
     this.tabItemAdrss                     = ((System.Windows.Controls.TabItem)(this.FindName("tabItemAdrss")));
     this.groupBox6                        = ((SilverlightContrib.Controls.GroupBox)(this.FindName("groupBox6")));
     this.tab3_txt_NomClientBrt            = ((System.Windows.Controls.TextBox)(this.FindName("tab3_txt_NomClientBrt")));
     this.lbl_NomProprietaire              = ((System.Windows.Controls.Label)(this.FindName("lbl_NomProprietaire")));
     this.lbl_Commune                      = ((System.Windows.Controls.Label)(this.FindName("lbl_Commune")));
     this.lbl_Quartier                     = ((System.Windows.Controls.Label)(this.FindName("lbl_Quartier")));
     this.lbl_Secteur                      = ((System.Windows.Controls.Label)(this.FindName("lbl_Secteur")));
     this.lbl_Rue                          = ((System.Windows.Controls.Label)(this.FindName("lbl_Rue")));
     this.tab3_txt_LibelleCommune          = ((System.Windows.Controls.TextBox)(this.FindName("tab3_txt_LibelleCommune")));
     this.tab3_txt_LibelleQuartier         = ((System.Windows.Controls.TextBox)(this.FindName("tab3_txt_LibelleQuartier")));
     this.tab3_txt_Secteur                 = ((System.Windows.Controls.TextBox)(this.FindName("tab3_txt_Secteur")));
     this.tab3_txt_NomRue                  = ((System.Windows.Controls.TextBox)(this.FindName("tab3_txt_NomRue")));
     this.tab3_txt_NumRue                  = ((System.Windows.Controls.TextBox)(this.FindName("tab3_txt_NumRue")));
     this.lbl_NumRue                       = ((System.Windows.Controls.Label)(this.FindName("lbl_NumRue")));
     this.tab3_txt_etage                   = ((System.Windows.Controls.TextBox)(this.FindName("tab3_txt_etage")));
     this.lbl_Etage                        = ((System.Windows.Controls.Label)(this.FindName("lbl_Etage")));
     this.textBox24                        = ((System.Windows.Controls.TextBox)(this.FindName("textBox24")));
     this.lbl_autresInfo                   = ((System.Windows.Controls.Label)(this.FindName("lbl_autresInfo")));
     this.tab3_txt_NumLot                  = ((System.Windows.Controls.TextBox)(this.FindName("tab3_txt_NumLot")));
     this.lbl_Lot                          = ((System.Windows.Controls.Label)(this.FindName("lbl_Lot")));
     this.textBox28                        = ((System.Windows.Controls.TextBox)(this.FindName("textBox28")));
     this.label53                          = ((System.Windows.Controls.Label)(this.FindName("label53")));
     this.tab3_txt_Telephone               = ((System.Windows.Controls.TextBox)(this.FindName("tab3_txt_Telephone")));
     this.lbl_Telephone                    = ((System.Windows.Controls.Label)(this.FindName("lbl_Telephone")));
     this.tab3_txt_tournee                 = ((System.Windows.Controls.TextBox)(this.FindName("tab3_txt_tournee")));
     this.lbl_Tournee                      = ((System.Windows.Controls.Label)(this.FindName("lbl_Tournee")));
     this.tab3_txt_OrdreTour               = ((System.Windows.Controls.TextBox)(this.FindName("tab3_txt_OrdreTour")));
     this.lbl_Sequence                     = ((System.Windows.Controls.Label)(this.FindName("lbl_Sequence")));
     this.tabPieceJointe                   = ((System.Windows.Controls.TabItem)(this.FindName("tabPieceJointe")));
     this.Vwb               = ((System.Windows.Controls.Viewbox)(this.FindName("Vwb")));
     this.label2_Copy       = ((System.Windows.Controls.Label)(this.FindName("label2_Copy")));
     this.txtSite_Origine   = ((System.Windows.Controls.TextBox)(this.FindName("txtSite_Origine")));
     this.label3_Copy       = ((System.Windows.Controls.Label)(this.FindName("label3_Copy")));
     this.txtCentre_Origine = ((System.Windows.Controls.TextBox)(this.FindName("txtCentre_Origine")));
     this.label4            = ((System.Windows.Controls.Label)(this.FindName("label4")));
     this.txtProduit        = ((System.Windows.Controls.TextBox)(this.FindName("txtProduit")));
     this.label4_Copy       = ((System.Windows.Controls.Label)(this.FindName("label4_Copy")));
     this.txtNumeroDemande  = ((System.Windows.Controls.TextBox)(this.FindName("txtNumeroDemande")));
     this.prgBar            = ((System.Windows.Controls.ProgressBar)(this.FindName("prgBar")));
 }
 public void InitializeComponent()
 {
     if (_contentLoaded)
     {
         return;
     }
     _contentLoaded = true;
     System.Windows.Application.LoadComponent(this, new System.Uri("/SilverlightCSharp;component/CompetenceView.xaml/CompetenceView.xaml", System.UriKind.Relative));
     this.CompetenceGraph = ((System.Windows.Controls.Viewbox)(this.FindName("CompetenceGraph")));
     this.Russell_Lawrence_Management_Communiceren        = ((System.Windows.Shapes.Line)(this.FindName("Russell_Lawrence_Management_Communiceren")));
     this.Russell_Lawrence_Management_Implementatie       = ((System.Windows.Shapes.Line)(this.FindName("Russell_Lawrence_Management_Implementatie")));
     this.Russell_Lawrence_AnalyseOntwerp_Implementatie   = ((System.Windows.Shapes.Line)(this.FindName("Russell_Lawrence_AnalyseOntwerp_Implementatie")));
     this.Russell_Lawrence_AnalyseOntwerp_Communiceren    = ((System.Windows.Shapes.Line)(this.FindName("Russell_Lawrence_AnalyseOntwerp_Communiceren")));
     this.Heather_Martin_Management_Communiceren          = ((System.Windows.Shapes.Line)(this.FindName("Heather_Martin_Management_Communiceren")));
     this.Heather_Martin_Management_Implementatie         = ((System.Windows.Shapes.Line)(this.FindName("Heather_Martin_Management_Implementatie")));
     this.Heather_Martin_AnalyseOntwerp_Implementatie     = ((System.Windows.Shapes.Line)(this.FindName("Heather_Martin_AnalyseOntwerp_Implementatie")));
     this.Heather_Martin_AnalyseOntwerp_Communiceren      = ((System.Windows.Shapes.Line)(this.FindName("Heather_Martin_AnalyseOntwerp_Communiceren")));
     this.Alice_Daniels_Management_Communiceren           = ((System.Windows.Shapes.Line)(this.FindName("Alice_Daniels_Management_Communiceren")));
     this.Alice_Daniels_Management_Implementatie          = ((System.Windows.Shapes.Line)(this.FindName("Alice_Daniels_Management_Implementatie")));
     this.Alice_Daniels_AnalyseOntwerp_Implementatie      = ((System.Windows.Shapes.Line)(this.FindName("Alice_Daniels_AnalyseOntwerp_Implementatie")));
     this.Alice_Daniels_AnalyseOntwerp_Communiceren       = ((System.Windows.Shapes.Line)(this.FindName("Alice_Daniels_AnalyseOntwerp_Communiceren")));
     this.Louise_Stephens_Management_Communiceren         = ((System.Windows.Shapes.Line)(this.FindName("Louise_Stephens_Management_Communiceren")));
     this.Louise_Stephens_Management_Implementatie        = ((System.Windows.Shapes.Line)(this.FindName("Louise_Stephens_Management_Implementatie")));
     this.Louise_Stephens_AnalyseOntwerp_Implementatie    = ((System.Windows.Shapes.Line)(this.FindName("Louise_Stephens_AnalyseOntwerp_Implementatie")));
     this.Louise_Stephens_AnalyseOntwerp_Communiceren     = ((System.Windows.Shapes.Line)(this.FindName("Louise_Stephens_AnalyseOntwerp_Communiceren")));
     this.Ryan_Fernandez_Management_Communiceren          = ((System.Windows.Shapes.Line)(this.FindName("Ryan_Fernandez_Management_Communiceren")));
     this.Ryan_Fernandez_Management_Implementatie         = ((System.Windows.Shapes.Line)(this.FindName("Ryan_Fernandez_Management_Implementatie")));
     this.Ryan_Fernandez_AnalyseOntwerp_Implementatie     = ((System.Windows.Shapes.Line)(this.FindName("Ryan_Fernandez_AnalyseOntwerp_Implementatie")));
     this.Ryan_Fernandez_AnalyseOntwerp_Communiceren      = ((System.Windows.Shapes.Line)(this.FindName("Ryan_Fernandez_AnalyseOntwerp_Communiceren")));
     this.Nancy_Gibson_Management_Communiceren            = ((System.Windows.Shapes.Line)(this.FindName("Nancy_Gibson_Management_Communiceren")));
     this.Nancy_Gibson_Management_Implementatie           = ((System.Windows.Shapes.Line)(this.FindName("Nancy_Gibson_Management_Implementatie")));
     this.Nancy_Gibson_AnalyseOntwerp_Implementatie       = ((System.Windows.Shapes.Line)(this.FindName("Nancy_Gibson_AnalyseOntwerp_Implementatie")));
     this.Nancy_Gibson_AnalyseOntwerp_Communiceren        = ((System.Windows.Shapes.Line)(this.FindName("Nancy_Gibson_AnalyseOntwerp_Communiceren")));
     this.Judy_Ellis_Management_Communiceren              = ((System.Windows.Shapes.Line)(this.FindName("Judy_Ellis_Management_Communiceren")));
     this.Judy_Ellis_Management_Implementatie             = ((System.Windows.Shapes.Line)(this.FindName("Judy_Ellis_Management_Implementatie")));
     this.Judy_Ellis_AnalyseOntwerp_Implementatie         = ((System.Windows.Shapes.Line)(this.FindName("Judy_Ellis_AnalyseOntwerp_Implementatie")));
     this.Judy_Ellis_AnalyseOntwerp_Communiceren          = ((System.Windows.Shapes.Line)(this.FindName("Judy_Ellis_AnalyseOntwerp_Communiceren")));
     this.Mark_Carroll_Management_Communiceren            = ((System.Windows.Shapes.Line)(this.FindName("Mark_Carroll_Management_Communiceren")));
     this.Mark_Carroll_Management_Implementatie           = ((System.Windows.Shapes.Line)(this.FindName("Mark_Carroll_Management_Implementatie")));
     this.Mark_Carroll_AnalyseOntwerp_Implementatie       = ((System.Windows.Shapes.Line)(this.FindName("Mark_Carroll_AnalyseOntwerp_Implementatie")));
     this.Mark_Carroll_AnalyseOntwerp_Communiceren        = ((System.Windows.Shapes.Line)(this.FindName("Mark_Carroll_AnalyseOntwerp_Communiceren")));
     this.Chris_Lawrence_Management_Communiceren          = ((System.Windows.Shapes.Line)(this.FindName("Chris_Lawrence_Management_Communiceren")));
     this.Chris_Lawrence_Management_Implementatie         = ((System.Windows.Shapes.Line)(this.FindName("Chris_Lawrence_Management_Implementatie")));
     this.Chris_Lawrence_AnalyseOntwerp_Implementatie     = ((System.Windows.Shapes.Line)(this.FindName("Chris_Lawrence_AnalyseOntwerp_Implementatie")));
     this.Chris_Lawrence_AnalyseOntwerp_Communiceren      = ((System.Windows.Shapes.Line)(this.FindName("Chris_Lawrence_AnalyseOntwerp_Communiceren")));
     this.Russell_Hicks_Management_Communiceren           = ((System.Windows.Shapes.Line)(this.FindName("Russell_Hicks_Management_Communiceren")));
     this.Russell_Hicks_Management_Implementatie          = ((System.Windows.Shapes.Line)(this.FindName("Russell_Hicks_Management_Implementatie")));
     this.Russell_Hicks_AnalyseOntwerp_Implementatie      = ((System.Windows.Shapes.Line)(this.FindName("Russell_Hicks_AnalyseOntwerp_Implementatie")));
     this.Russell_Hicks_AnalyseOntwerp_Communiceren       = ((System.Windows.Shapes.Line)(this.FindName("Russell_Hicks_AnalyseOntwerp_Communiceren")));
     this.Jennifer_Wright_Management_Communiceren         = ((System.Windows.Shapes.Line)(this.FindName("Jennifer_Wright_Management_Communiceren")));
     this.Jennifer_Wright_Management_Implementatie        = ((System.Windows.Shapes.Line)(this.FindName("Jennifer_Wright_Management_Implementatie")));
     this.Jennifer_Wright_AnalyseOntwerp_Implementatie    = ((System.Windows.Shapes.Line)(this.FindName("Jennifer_Wright_AnalyseOntwerp_Implementatie")));
     this.Jennifer_Wright_AnalyseOntwerp_Communiceren     = ((System.Windows.Shapes.Line)(this.FindName("Jennifer_Wright_AnalyseOntwerp_Communiceren")));
     this.Joseph_Hamilton_Management_Communiceren         = ((System.Windows.Shapes.Line)(this.FindName("Joseph_Hamilton_Management_Communiceren")));
     this.Joseph_Hamilton_Management_Implementatie        = ((System.Windows.Shapes.Line)(this.FindName("Joseph_Hamilton_Management_Implementatie")));
     this.Joseph_Hamilton_AnalyseOntwerp_Implementatie    = ((System.Windows.Shapes.Line)(this.FindName("Joseph_Hamilton_AnalyseOntwerp_Implementatie")));
     this.Joseph_Hamilton_AnalyseOntwerp_Communiceren     = ((System.Windows.Shapes.Line)(this.FindName("Joseph_Hamilton_AnalyseOntwerp_Communiceren")));
     this.Kathryn_Arnold_Management_Communiceren          = ((System.Windows.Shapes.Line)(this.FindName("Kathryn_Arnold_Management_Communiceren")));
     this.Kathryn_Arnold_Management_Implementatie         = ((System.Windows.Shapes.Line)(this.FindName("Kathryn_Arnold_Management_Implementatie")));
     this.Kathryn_Arnold_AnalyseOntwerp_Implementatie     = ((System.Windows.Shapes.Line)(this.FindName("Kathryn_Arnold_AnalyseOntwerp_Implementatie")));
     this.Kathryn_Arnold_AnalyseOntwerp_Communiceren      = ((System.Windows.Shapes.Line)(this.FindName("Kathryn_Arnold_AnalyseOntwerp_Communiceren")));
     this.Mildred_Peterson_Management_Communiceren        = ((System.Windows.Shapes.Line)(this.FindName("Mildred_Peterson_Management_Communiceren")));
     this.Mildred_Peterson_Management_Implementatie       = ((System.Windows.Shapes.Line)(this.FindName("Mildred_Peterson_Management_Implementatie")));
     this.Mildred_Peterson_AnalyseOntwerp_Implementatie   = ((System.Windows.Shapes.Line)(this.FindName("Mildred_Peterson_AnalyseOntwerp_Implementatie")));
     this.Mildred_Peterson_AnalyseOntwerp_Communiceren    = ((System.Windows.Shapes.Line)(this.FindName("Mildred_Peterson_AnalyseOntwerp_Communiceren")));
     this.Victor_Snyder_Management_Communiceren           = ((System.Windows.Shapes.Line)(this.FindName("Victor_Snyder_Management_Communiceren")));
     this.Victor_Snyder_Management_Implementatie          = ((System.Windows.Shapes.Line)(this.FindName("Victor_Snyder_Management_Implementatie")));
     this.Victor_Snyder_AnalyseOntwerp_Implementatie      = ((System.Windows.Shapes.Line)(this.FindName("Victor_Snyder_AnalyseOntwerp_Implementatie")));
     this.Victor_Snyder_AnalyseOntwerp_Communiceren       = ((System.Windows.Shapes.Line)(this.FindName("Victor_Snyder_AnalyseOntwerp_Communiceren")));
     this.Tina_Morris_Management_Communiceren             = ((System.Windows.Shapes.Line)(this.FindName("Tina_Morris_Management_Communiceren")));
     this.Tina_Morris_Management_Implementatie            = ((System.Windows.Shapes.Line)(this.FindName("Tina_Morris_Management_Implementatie")));
     this.Tina_Morris_AnalyseOntwerp_Implementatie        = ((System.Windows.Shapes.Line)(this.FindName("Tina_Morris_AnalyseOntwerp_Implementatie")));
     this.Tina_Morris_AnalyseOntwerp_Communiceren         = ((System.Windows.Shapes.Line)(this.FindName("Tina_Morris_AnalyseOntwerp_Communiceren")));
     this.Thomas_Stone_Management_Communiceren            = ((System.Windows.Shapes.Line)(this.FindName("Thomas_Stone_Management_Communiceren")));
     this.Thomas_Stone_Management_Implementatie           = ((System.Windows.Shapes.Line)(this.FindName("Thomas_Stone_Management_Implementatie")));
     this.Thomas_Stone_AnalyseOntwerp_Implementatie       = ((System.Windows.Shapes.Line)(this.FindName("Thomas_Stone_AnalyseOntwerp_Implementatie")));
     this.Thomas_Stone_AnalyseOntwerp_Communiceren        = ((System.Windows.Shapes.Line)(this.FindName("Thomas_Stone_AnalyseOntwerp_Communiceren")));
     this.Todd_Brooks_Management_Communiceren             = ((System.Windows.Shapes.Line)(this.FindName("Todd_Brooks_Management_Communiceren")));
     this.Todd_Brooks_Management_Implementatie            = ((System.Windows.Shapes.Line)(this.FindName("Todd_Brooks_Management_Implementatie")));
     this.Todd_Brooks_AnalyseOntwerp_Implementatie        = ((System.Windows.Shapes.Line)(this.FindName("Todd_Brooks_AnalyseOntwerp_Implementatie")));
     this.Todd_Brooks_AnalyseOntwerp_Communiceren         = ((System.Windows.Shapes.Line)(this.FindName("Todd_Brooks_AnalyseOntwerp_Communiceren")));
     this.Kelly_Mitchell_Management_Communiceren          = ((System.Windows.Shapes.Line)(this.FindName("Kelly_Mitchell_Management_Communiceren")));
     this.Kelly_Mitchell_Management_Implementatie         = ((System.Windows.Shapes.Line)(this.FindName("Kelly_Mitchell_Management_Implementatie")));
     this.Kelly_Mitchell_AnalyseOntwerp_Implementatie     = ((System.Windows.Shapes.Line)(this.FindName("Kelly_Mitchell_AnalyseOntwerp_Implementatie")));
     this.Kelly_Mitchell_AnalyseOntwerp_Communiceren      = ((System.Windows.Shapes.Line)(this.FindName("Kelly_Mitchell_AnalyseOntwerp_Communiceren")));
     this.Keith_Wallace_Management_Communiceren           = ((System.Windows.Shapes.Line)(this.FindName("Keith_Wallace_Management_Communiceren")));
     this.Keith_Wallace_Management_Implementatie          = ((System.Windows.Shapes.Line)(this.FindName("Keith_Wallace_Management_Implementatie")));
     this.Keith_Wallace_AnalyseOntwerp_Implementatie      = ((System.Windows.Shapes.Line)(this.FindName("Keith_Wallace_AnalyseOntwerp_Implementatie")));
     this.Keith_Wallace_AnalyseOntwerp_Communiceren       = ((System.Windows.Shapes.Line)(this.FindName("Keith_Wallace_AnalyseOntwerp_Communiceren")));
     this.Russell_Barnes_Management_Communiceren          = ((System.Windows.Shapes.Line)(this.FindName("Russell_Barnes_Management_Communiceren")));
     this.Russell_Barnes_Management_Implementatie         = ((System.Windows.Shapes.Line)(this.FindName("Russell_Barnes_Management_Implementatie")));
     this.Russell_Barnes_AnalyseOntwerp_Implementatie     = ((System.Windows.Shapes.Line)(this.FindName("Russell_Barnes_AnalyseOntwerp_Implementatie")));
     this.Russell_Barnes_AnalyseOntwerp_Communiceren      = ((System.Windows.Shapes.Line)(this.FindName("Russell_Barnes_AnalyseOntwerp_Communiceren")));
     this.Patricia_West_Management_Communiceren           = ((System.Windows.Shapes.Line)(this.FindName("Patricia_West_Management_Communiceren")));
     this.Patricia_West_Management_Implementatie          = ((System.Windows.Shapes.Line)(this.FindName("Patricia_West_Management_Implementatie")));
     this.Patricia_West_AnalyseOntwerp_Implementatie      = ((System.Windows.Shapes.Line)(this.FindName("Patricia_West_AnalyseOntwerp_Implementatie")));
     this.Patricia_West_AnalyseOntwerp_Communiceren       = ((System.Windows.Shapes.Line)(this.FindName("Patricia_West_AnalyseOntwerp_Communiceren")));
     this.Lois_Oliver_Management_Communiceren             = ((System.Windows.Shapes.Line)(this.FindName("Lois_Oliver_Management_Communiceren")));
     this.Lois_Oliver_Management_Implementatie            = ((System.Windows.Shapes.Line)(this.FindName("Lois_Oliver_Management_Implementatie")));
     this.Lois_Oliver_AnalyseOntwerp_Implementatie        = ((System.Windows.Shapes.Line)(this.FindName("Lois_Oliver_AnalyseOntwerp_Implementatie")));
     this.Lois_Oliver_AnalyseOntwerp_Communiceren         = ((System.Windows.Shapes.Line)(this.FindName("Lois_Oliver_AnalyseOntwerp_Communiceren")));
     this.Marilyn_Williamson_Management_Communiceren      = ((System.Windows.Shapes.Line)(this.FindName("Marilyn_Williamson_Management_Communiceren")));
     this.Marilyn_Williamson_Management_Implementatie     = ((System.Windows.Shapes.Line)(this.FindName("Marilyn_Williamson_Management_Implementatie")));
     this.Marilyn_Williamson_AnalyseOntwerp_Implementatie = ((System.Windows.Shapes.Line)(this.FindName("Marilyn_Williamson_AnalyseOntwerp_Implementatie")));
     this.Marilyn_Williamson_AnalyseOntwerp_Communiceren  = ((System.Windows.Shapes.Line)(this.FindName("Marilyn_Williamson_AnalyseOntwerp_Communiceren")));
     this.Harold_Reyes_Management_Communiceren            = ((System.Windows.Shapes.Line)(this.FindName("Harold_Reyes_Management_Communiceren")));
     this.Harold_Reyes_Management_Implementatie           = ((System.Windows.Shapes.Line)(this.FindName("Harold_Reyes_Management_Implementatie")));
     this.Harold_Reyes_AnalyseOntwerp_Implementatie       = ((System.Windows.Shapes.Line)(this.FindName("Harold_Reyes_AnalyseOntwerp_Implementatie")));
     this.Harold_Reyes_AnalyseOntwerp_Communiceren        = ((System.Windows.Shapes.Line)(this.FindName("Harold_Reyes_AnalyseOntwerp_Communiceren")));
     this.Sharon_Frazier_Management_Communiceren          = ((System.Windows.Shapes.Line)(this.FindName("Sharon_Frazier_Management_Communiceren")));
     this.Sharon_Frazier_Management_Implementatie         = ((System.Windows.Shapes.Line)(this.FindName("Sharon_Frazier_Management_Implementatie")));
     this.Sharon_Frazier_AnalyseOntwerp_Implementatie     = ((System.Windows.Shapes.Line)(this.FindName("Sharon_Frazier_AnalyseOntwerp_Implementatie")));
     this.Sharon_Frazier_AnalyseOntwerp_Communiceren      = ((System.Windows.Shapes.Line)(this.FindName("Sharon_Frazier_AnalyseOntwerp_Communiceren")));
     this.Harold_Allen_Management_Communiceren            = ((System.Windows.Shapes.Line)(this.FindName("Harold_Allen_Management_Communiceren")));
     this.Harold_Allen_Management_Implementatie           = ((System.Windows.Shapes.Line)(this.FindName("Harold_Allen_Management_Implementatie")));
     this.Harold_Allen_AnalyseOntwerp_Implementatie       = ((System.Windows.Shapes.Line)(this.FindName("Harold_Allen_AnalyseOntwerp_Implementatie")));
     this.Harold_Allen_AnalyseOntwerp_Communiceren        = ((System.Windows.Shapes.Line)(this.FindName("Harold_Allen_AnalyseOntwerp_Communiceren")));
     this.Victor_Harrison_Management_Communiceren         = ((System.Windows.Shapes.Line)(this.FindName("Victor_Harrison_Management_Communiceren")));
     this.Victor_Harrison_Management_Implementatie        = ((System.Windows.Shapes.Line)(this.FindName("Victor_Harrison_Management_Implementatie")));
     this.Victor_Harrison_AnalyseOntwerp_Implementatie    = ((System.Windows.Shapes.Line)(this.FindName("Victor_Harrison_AnalyseOntwerp_Implementatie")));
     this.Victor_Harrison_AnalyseOntwerp_Communiceren     = ((System.Windows.Shapes.Line)(this.FindName("Victor_Harrison_AnalyseOntwerp_Communiceren")));
     this.Margaret_Romero_Management_Communiceren         = ((System.Windows.Shapes.Line)(this.FindName("Margaret_Romero_Management_Communiceren")));
     this.Margaret_Romero_Management_Implementatie        = ((System.Windows.Shapes.Line)(this.FindName("Margaret_Romero_Management_Implementatie")));
     this.Margaret_Romero_AnalyseOntwerp_Implementatie    = ((System.Windows.Shapes.Line)(this.FindName("Margaret_Romero_AnalyseOntwerp_Implementatie")));
     this.Margaret_Romero_AnalyseOntwerp_Communiceren     = ((System.Windows.Shapes.Line)(this.FindName("Margaret_Romero_AnalyseOntwerp_Communiceren")));
     this.Tina_Flores_Management_Communiceren             = ((System.Windows.Shapes.Line)(this.FindName("Tina_Flores_Management_Communiceren")));
     this.Tina_Flores_Management_Implementatie            = ((System.Windows.Shapes.Line)(this.FindName("Tina_Flores_Management_Implementatie")));
     this.Tina_Flores_AnalyseOntwerp_Implementatie        = ((System.Windows.Shapes.Line)(this.FindName("Tina_Flores_AnalyseOntwerp_Implementatie")));
     this.Tina_Flores_AnalyseOntwerp_Communiceren         = ((System.Windows.Shapes.Line)(this.FindName("Tina_Flores_AnalyseOntwerp_Communiceren")));
     this.Raymond_Johnston_Management_Communiceren        = ((System.Windows.Shapes.Line)(this.FindName("Raymond_Johnston_Management_Communiceren")));
     this.Raymond_Johnston_Management_Implementatie       = ((System.Windows.Shapes.Line)(this.FindName("Raymond_Johnston_Management_Implementatie")));
     this.Raymond_Johnston_AnalyseOntwerp_Implementatie   = ((System.Windows.Shapes.Line)(this.FindName("Raymond_Johnston_AnalyseOntwerp_Implementatie")));
     this.Raymond_Johnston_AnalyseOntwerp_Communiceren    = ((System.Windows.Shapes.Line)(this.FindName("Raymond_Johnston_AnalyseOntwerp_Communiceren")));
     this.Raymond_Long_Management_Communiceren            = ((System.Windows.Shapes.Line)(this.FindName("Raymond_Long_Management_Communiceren")));
     this.Raymond_Long_Management_Implementatie           = ((System.Windows.Shapes.Line)(this.FindName("Raymond_Long_Management_Implementatie")));
     this.Raymond_Long_AnalyseOntwerp_Implementatie       = ((System.Windows.Shapes.Line)(this.FindName("Raymond_Long_AnalyseOntwerp_Implementatie")));
     this.Raymond_Long_AnalyseOntwerp_Communiceren        = ((System.Windows.Shapes.Line)(this.FindName("Raymond_Long_AnalyseOntwerp_Communiceren")));
     this.Julie_Griffin_Management_Communiceren           = ((System.Windows.Shapes.Line)(this.FindName("Julie_Griffin_Management_Communiceren")));
     this.Julie_Griffin_Management_Implementatie          = ((System.Windows.Shapes.Line)(this.FindName("Julie_Griffin_Management_Implementatie")));
     this.Julie_Griffin_AnalyseOntwerp_Implementatie      = ((System.Windows.Shapes.Line)(this.FindName("Julie_Griffin_AnalyseOntwerp_Implementatie")));
     this.Julie_Griffin_AnalyseOntwerp_Communiceren       = ((System.Windows.Shapes.Line)(this.FindName("Julie_Griffin_AnalyseOntwerp_Communiceren")));
     this.Virginia_Weaver_Management_Communiceren         = ((System.Windows.Shapes.Line)(this.FindName("Virginia_Weaver_Management_Communiceren")));
     this.Virginia_Weaver_Management_Implementatie        = ((System.Windows.Shapes.Line)(this.FindName("Virginia_Weaver_Management_Implementatie")));
     this.Virginia_Weaver_AnalyseOntwerp_Implementatie    = ((System.Windows.Shapes.Line)(this.FindName("Virginia_Weaver_AnalyseOntwerp_Implementatie")));
     this.Virginia_Weaver_AnalyseOntwerp_Communiceren     = ((System.Windows.Shapes.Line)(this.FindName("Virginia_Weaver_AnalyseOntwerp_Communiceren")));
     this.Gregory_Andrews_Management_Communiceren         = ((System.Windows.Shapes.Line)(this.FindName("Gregory_Andrews_Management_Communiceren")));
     this.Gregory_Andrews_Management_Implementatie        = ((System.Windows.Shapes.Line)(this.FindName("Gregory_Andrews_Management_Implementatie")));
     this.Gregory_Andrews_AnalyseOntwerp_Implementatie    = ((System.Windows.Shapes.Line)(this.FindName("Gregory_Andrews_AnalyseOntwerp_Implementatie")));
     this.Gregory_Andrews_AnalyseOntwerp_Communiceren     = ((System.Windows.Shapes.Line)(this.FindName("Gregory_Andrews_AnalyseOntwerp_Communiceren")));
     this.Frances_Oliver_Management_Communiceren          = ((System.Windows.Shapes.Line)(this.FindName("Frances_Oliver_Management_Communiceren")));
     this.Frances_Oliver_Management_Implementatie         = ((System.Windows.Shapes.Line)(this.FindName("Frances_Oliver_Management_Implementatie")));
     this.Frances_Oliver_AnalyseOntwerp_Implementatie     = ((System.Windows.Shapes.Line)(this.FindName("Frances_Oliver_AnalyseOntwerp_Implementatie")));
     this.Frances_Oliver_AnalyseOntwerp_Communiceren      = ((System.Windows.Shapes.Line)(this.FindName("Frances_Oliver_AnalyseOntwerp_Communiceren")));
     this.Ryan_Taylor_Management_Communiceren             = ((System.Windows.Shapes.Line)(this.FindName("Ryan_Taylor_Management_Communiceren")));
     this.Ryan_Taylor_Management_Implementatie            = ((System.Windows.Shapes.Line)(this.FindName("Ryan_Taylor_Management_Implementatie")));
     this.Ryan_Taylor_AnalyseOntwerp_Implementatie        = ((System.Windows.Shapes.Line)(this.FindName("Ryan_Taylor_AnalyseOntwerp_Implementatie")));
     this.Ryan_Taylor_AnalyseOntwerp_Communiceren         = ((System.Windows.Shapes.Line)(this.FindName("Ryan_Taylor_AnalyseOntwerp_Communiceren")));
     this.Nicole_Cunningham_Management_Communiceren       = ((System.Windows.Shapes.Line)(this.FindName("Nicole_Cunningham_Management_Communiceren")));
     this.Nicole_Cunningham_Management_Implementatie      = ((System.Windows.Shapes.Line)(this.FindName("Nicole_Cunningham_Management_Implementatie")));
     this.Nicole_Cunningham_AnalyseOntwerp_Implementatie  = ((System.Windows.Shapes.Line)(this.FindName("Nicole_Cunningham_AnalyseOntwerp_Implementatie")));
     this.Nicole_Cunningham_AnalyseOntwerp_Communiceren   = ((System.Windows.Shapes.Line)(this.FindName("Nicole_Cunningham_AnalyseOntwerp_Communiceren")));
     this.Eugene_Burns_Management_Communiceren            = ((System.Windows.Shapes.Line)(this.FindName("Eugene_Burns_Management_Communiceren")));
     this.Eugene_Burns_Management_Implementatie           = ((System.Windows.Shapes.Line)(this.FindName("Eugene_Burns_Management_Implementatie")));
     this.Eugene_Burns_AnalyseOntwerp_Implementatie       = ((System.Windows.Shapes.Line)(this.FindName("Eugene_Burns_AnalyseOntwerp_Implementatie")));
     this.Eugene_Burns_AnalyseOntwerp_Communiceren        = ((System.Windows.Shapes.Line)(this.FindName("Eugene_Burns_AnalyseOntwerp_Communiceren")));
     this.Lori_Coleman_Management_Communiceren            = ((System.Windows.Shapes.Line)(this.FindName("Lori_Coleman_Management_Communiceren")));
     this.Lori_Coleman_Management_Implementatie           = ((System.Windows.Shapes.Line)(this.FindName("Lori_Coleman_Management_Implementatie")));
     this.Lori_Coleman_AnalyseOntwerp_Implementatie       = ((System.Windows.Shapes.Line)(this.FindName("Lori_Coleman_AnalyseOntwerp_Implementatie")));
     this.Lori_Coleman_AnalyseOntwerp_Communiceren        = ((System.Windows.Shapes.Line)(this.FindName("Lori_Coleman_AnalyseOntwerp_Communiceren")));
     this.StudentNameBlock              = ((System.Windows.Controls.TextBlock)(this.FindName("StudentNameBlock")));
     this.StudentScroller               = ((System.Windows.Controls.ScrollViewer)(this.FindName("StudentScroller")));
     this.Russell_Lawrence_Text_Block   = ((System.Windows.Controls.Border)(this.FindName("Russell_Lawrence_Text_Block")));
     this.Heather_Martin_Text_Block     = ((System.Windows.Controls.Border)(this.FindName("Heather_Martin_Text_Block")));
     this.Alice_Daniels_Text_Block      = ((System.Windows.Controls.Border)(this.FindName("Alice_Daniels_Text_Block")));
     this.Louise_Stephens_Text_Block    = ((System.Windows.Controls.Border)(this.FindName("Louise_Stephens_Text_Block")));
     this.Ryan_Fernandez_Text_Block     = ((System.Windows.Controls.Border)(this.FindName("Ryan_Fernandez_Text_Block")));
     this.Nancy_Gibson_Text_Block       = ((System.Windows.Controls.Border)(this.FindName("Nancy_Gibson_Text_Block")));
     this.Judy_Ellis_Text_Block         = ((System.Windows.Controls.Border)(this.FindName("Judy_Ellis_Text_Block")));
     this.Mark_Carroll_Text_Block       = ((System.Windows.Controls.Border)(this.FindName("Mark_Carroll_Text_Block")));
     this.Chris_Lawrence_Text_Block     = ((System.Windows.Controls.Border)(this.FindName("Chris_Lawrence_Text_Block")));
     this.Russell_Hicks_Text_Block      = ((System.Windows.Controls.Border)(this.FindName("Russell_Hicks_Text_Block")));
     this.Jennifer_Wright_Text_Block    = ((System.Windows.Controls.Border)(this.FindName("Jennifer_Wright_Text_Block")));
     this.Joseph_Hamilton_Text_Block    = ((System.Windows.Controls.Border)(this.FindName("Joseph_Hamilton_Text_Block")));
     this.Kathryn_Arnold_Text_Block     = ((System.Windows.Controls.Border)(this.FindName("Kathryn_Arnold_Text_Block")));
     this.Mildred_Peterson_Text_Block   = ((System.Windows.Controls.Border)(this.FindName("Mildred_Peterson_Text_Block")));
     this.Victor_Snyder_Text_Block      = ((System.Windows.Controls.Border)(this.FindName("Victor_Snyder_Text_Block")));
     this.Tina_Morris_Text_Block        = ((System.Windows.Controls.Border)(this.FindName("Tina_Morris_Text_Block")));
     this.Thomas_Stone_Text_Block       = ((System.Windows.Controls.Border)(this.FindName("Thomas_Stone_Text_Block")));
     this.Todd_Brooks_Text_Block        = ((System.Windows.Controls.Border)(this.FindName("Todd_Brooks_Text_Block")));
     this.Kelly_Mitchell_Text_Block     = ((System.Windows.Controls.Border)(this.FindName("Kelly_Mitchell_Text_Block")));
     this.Keith_Wallace_Text_Block      = ((System.Windows.Controls.Border)(this.FindName("Keith_Wallace_Text_Block")));
     this.Russell_Barnes_Text_Block     = ((System.Windows.Controls.Border)(this.FindName("Russell_Barnes_Text_Block")));
     this.Patricia_West_Text_Block      = ((System.Windows.Controls.Border)(this.FindName("Patricia_West_Text_Block")));
     this.Lois_Oliver_Text_Block        = ((System.Windows.Controls.Border)(this.FindName("Lois_Oliver_Text_Block")));
     this.Marilyn_Williamson_Text_Block = ((System.Windows.Controls.Border)(this.FindName("Marilyn_Williamson_Text_Block")));
     this.Harold_Reyes_Text_Block       = ((System.Windows.Controls.Border)(this.FindName("Harold_Reyes_Text_Block")));
     this.Sharon_Frazier_Text_Block     = ((System.Windows.Controls.Border)(this.FindName("Sharon_Frazier_Text_Block")));
     this.Harold_Allen_Text_Block       = ((System.Windows.Controls.Border)(this.FindName("Harold_Allen_Text_Block")));
     this.Victor_Harrison_Text_Block    = ((System.Windows.Controls.Border)(this.FindName("Victor_Harrison_Text_Block")));
     this.Margaret_Romero_Text_Block    = ((System.Windows.Controls.Border)(this.FindName("Margaret_Romero_Text_Block")));
     this.Tina_Flores_Text_Block        = ((System.Windows.Controls.Border)(this.FindName("Tina_Flores_Text_Block")));
     this.Raymond_Johnston_Text_Block   = ((System.Windows.Controls.Border)(this.FindName("Raymond_Johnston_Text_Block")));
     this.Raymond_Long_Text_Block       = ((System.Windows.Controls.Border)(this.FindName("Raymond_Long_Text_Block")));
     this.Julie_Griffin_Text_Block      = ((System.Windows.Controls.Border)(this.FindName("Julie_Griffin_Text_Block")));
     this.Virginia_Weaver_Text_Block    = ((System.Windows.Controls.Border)(this.FindName("Virginia_Weaver_Text_Block")));
     this.Gregory_Andrews_Text_Block    = ((System.Windows.Controls.Border)(this.FindName("Gregory_Andrews_Text_Block")));
     this.Frances_Oliver_Text_Block     = ((System.Windows.Controls.Border)(this.FindName("Frances_Oliver_Text_Block")));
     this.Ryan_Taylor_Text_Block        = ((System.Windows.Controls.Border)(this.FindName("Ryan_Taylor_Text_Block")));
     this.Nicole_Cunningham_Text_Block  = ((System.Windows.Controls.Border)(this.FindName("Nicole_Cunningham_Text_Block")));
     this.Eugene_Burns_Text_Block       = ((System.Windows.Controls.Border)(this.FindName("Eugene_Burns_Text_Block")));
     this.Lori_Coleman_Text_Block       = ((System.Windows.Controls.Border)(this.FindName("Lori_Coleman_Text_Block")));
 }
Beispiel #41
0
        void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target)
        {
            switch (connectionId)
            {
            case 1:

            #line 4 "..\..\..\..\page\Condenser.xaml"
                ((WpfApplication2.Condenser)(target)).Loaded += new System.Windows.RoutedEventHandler(this.Window_Loaded);

            #line default
            #line hidden

            #line 4 "..\..\..\..\page\Condenser.xaml"
                ((WpfApplication2.Condenser)(target)).Closing += new System.ComponentModel.CancelEventHandler(this.Window_Closing);

            #line default
            #line hidden
                return;

            case 2:
                this.menu1 = ((System.Windows.Controls.Menu)(target));
                return;

            case 3:
                this.TestProj = ((System.Windows.Controls.MenuItem)(target));
                return;

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

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

            #line 12 "..\..\..\..\page\Condenser.xaml"
                this.ReturnMainWindow.Click += new System.Windows.RoutedEventHandler(this.MenuItem_Click);

            #line default
            #line hidden
                return;

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

            #line 13 "..\..\..\..\page\Condenser.xaml"
                this.ExitExperiment.Click += new System.Windows.RoutedEventHandler(this.ExitExperiment_Click);

            #line default
            #line hidden
                return;

            case 7:
                this.viewbox1 = ((System.Windows.Controls.Viewbox)(target));
                return;

            case 8:
                this.image1 = ((System.Windows.Controls.Image)(target));
                return;
            }
            this._contentLoaded = true;
        }
Beispiel #42
0
 public void InitializeComponent()
 {
     if (_contentLoaded)
     {
         return;
     }
     _contentLoaded = true;
     System.Windows.Application.LoadComponent(this, new System.Uri("/ResourceFramework;component/UserControls/NPCs/Heads/Head3.xaml", System.UriKind.Relative));
     this.Path      = ((System.Windows.Shapes.Path)(this.FindName("Path")));
     this.Path_0    = ((System.Windows.Shapes.Path)(this.FindName("Path_0")));
     this.Path_1    = ((System.Windows.Shapes.Path)(this.FindName("Path_1")));
     this.Path_2    = ((System.Windows.Shapes.Path)(this.FindName("Path_2")));
     this.Path_3    = ((System.Windows.Shapes.Path)(this.FindName("Path_3")));
     this.Path_4    = ((System.Windows.Shapes.Path)(this.FindName("Path_4")));
     this.Path_5    = ((System.Windows.Shapes.Path)(this.FindName("Path_5")));
     this.Path_6    = ((System.Windows.Shapes.Path)(this.FindName("Path_6")));
     this.Path_7    = ((System.Windows.Shapes.Path)(this.FindName("Path_7")));
     this.Path_8    = ((System.Windows.Shapes.Path)(this.FindName("Path_8")));
     this.Path_9    = ((System.Windows.Shapes.Path)(this.FindName("Path_9")));
     this.Path_10   = ((System.Windows.Shapes.Path)(this.FindName("Path_10")));
     this.Path_11   = ((System.Windows.Shapes.Path)(this.FindName("Path_11")));
     this.Path_12   = ((System.Windows.Shapes.Path)(this.FindName("Path_12")));
     this.Path_13   = ((System.Windows.Shapes.Path)(this.FindName("Path_13")));
     this.Path_14   = ((System.Windows.Shapes.Path)(this.FindName("Path_14")));
     this.Path_15   = ((System.Windows.Shapes.Path)(this.FindName("Path_15")));
     this.Path_16   = ((System.Windows.Shapes.Path)(this.FindName("Path_16")));
     this.Path_17   = ((System.Windows.Shapes.Path)(this.FindName("Path_17")));
     this.Path_18   = ((System.Windows.Shapes.Path)(this.FindName("Path_18")));
     this.Path_19   = ((System.Windows.Shapes.Path)(this.FindName("Path_19")));
     this.Path_20   = ((System.Windows.Shapes.Path)(this.FindName("Path_20")));
     this.Path_21   = ((System.Windows.Shapes.Path)(this.FindName("Path_21")));
     this.Path_22   = ((System.Windows.Shapes.Path)(this.FindName("Path_22")));
     this.Path_23   = ((System.Windows.Shapes.Path)(this.FindName("Path_23")));
     this.Path_24   = ((System.Windows.Shapes.Path)(this.FindName("Path_24")));
     this.Path_25   = ((System.Windows.Shapes.Path)(this.FindName("Path_25")));
     this.Path_26   = ((System.Windows.Shapes.Path)(this.FindName("Path_26")));
     this.Path_27   = ((System.Windows.Shapes.Path)(this.FindName("Path_27")));
     this.Path_28   = ((System.Windows.Shapes.Path)(this.FindName("Path_28")));
     this.Path_29   = ((System.Windows.Shapes.Path)(this.FindName("Path_29")));
     this.Path_30   = ((System.Windows.Shapes.Path)(this.FindName("Path_30")));
     this.Path_31   = ((System.Windows.Shapes.Path)(this.FindName("Path_31")));
     this.Path_32   = ((System.Windows.Shapes.Path)(this.FindName("Path_32")));
     this.Group     = ((System.Windows.Controls.Viewbox)(this.FindName("Group")));
     this.ClipX     = ((System.Windows.Controls.Canvas)(this.FindName("ClipX")));
     this.Rectangle = ((System.Windows.Shapes.Rectangle)(this.FindName("Rectangle")));
     this.Path_33   = ((System.Windows.Shapes.Path)(this.FindName("Path_33")));
     this.Path_34   = ((System.Windows.Shapes.Path)(this.FindName("Path_34")));
     this.Path_35   = ((System.Windows.Shapes.Path)(this.FindName("Path_35")));
     this.Path_36   = ((System.Windows.Shapes.Path)(this.FindName("Path_36")));
     this.Path_37   = ((System.Windows.Shapes.Path)(this.FindName("Path_37")));
     this.Path_38   = ((System.Windows.Shapes.Path)(this.FindName("Path_38")));
     this.Path_39   = ((System.Windows.Shapes.Path)(this.FindName("Path_39")));
     this.Path_40   = ((System.Windows.Shapes.Path)(this.FindName("Path_40")));
     this.Path_41   = ((System.Windows.Shapes.Path)(this.FindName("Path_41")));
     this.Path_42   = ((System.Windows.Shapes.Path)(this.FindName("Path_42")));
     this.Path_43   = ((System.Windows.Shapes.Path)(this.FindName("Path_43")));
     this.Path_44   = ((System.Windows.Shapes.Path)(this.FindName("Path_44")));
     this.Path_45   = ((System.Windows.Shapes.Path)(this.FindName("Path_45")));
     this.Path_46   = ((System.Windows.Shapes.Path)(this.FindName("Path_46")));
     this.Path_47   = ((System.Windows.Shapes.Path)(this.FindName("Path_47")));
     this.Path_48   = ((System.Windows.Shapes.Path)(this.FindName("Path_48")));
     this.Path_49   = ((System.Windows.Shapes.Path)(this.FindName("Path_49")));
     this.Path_50   = ((System.Windows.Shapes.Path)(this.FindName("Path_50")));
     this.Path_51   = ((System.Windows.Shapes.Path)(this.FindName("Path_51")));
     this.Path_52   = ((System.Windows.Shapes.Path)(this.FindName("Path_52")));
     this.Path_53   = ((System.Windows.Shapes.Path)(this.FindName("Path_53")));
     this.Path_54   = ((System.Windows.Shapes.Path)(this.FindName("Path_54")));
     this.Path_55   = ((System.Windows.Shapes.Path)(this.FindName("Path_55")));
     this.Path_56   = ((System.Windows.Shapes.Path)(this.FindName("Path_56")));
     this.Path_57   = ((System.Windows.Shapes.Path)(this.FindName("Path_57")));
     this.Path_58   = ((System.Windows.Shapes.Path)(this.FindName("Path_58")));
     this.Path_59   = ((System.Windows.Shapes.Path)(this.FindName("Path_59")));
     this.Path_60   = ((System.Windows.Shapes.Path)(this.FindName("Path_60")));
     this.Path_61   = ((System.Windows.Shapes.Path)(this.FindName("Path_61")));
     this.Path_62   = ((System.Windows.Shapes.Path)(this.FindName("Path_62")));
     this.Path_63   = ((System.Windows.Shapes.Path)(this.FindName("Path_63")));
     this.Path_64   = ((System.Windows.Shapes.Path)(this.FindName("Path_64")));
     this.Path_65   = ((System.Windows.Shapes.Path)(this.FindName("Path_65")));
     this.Path_66   = ((System.Windows.Shapes.Path)(this.FindName("Path_66")));
     this.Path_67   = ((System.Windows.Shapes.Path)(this.FindName("Path_67")));
     this.Path_68   = ((System.Windows.Shapes.Path)(this.FindName("Path_68")));
     this.Path_69   = ((System.Windows.Shapes.Path)(this.FindName("Path_69")));
     this.Path_70   = ((System.Windows.Shapes.Path)(this.FindName("Path_70")));
     this.Path_71   = ((System.Windows.Shapes.Path)(this.FindName("Path_71")));
     this.Path_72   = ((System.Windows.Shapes.Path)(this.FindName("Path_72")));
     this.Path_73   = ((System.Windows.Shapes.Path)(this.FindName("Path_73")));
     this.Path_74   = ((System.Windows.Shapes.Path)(this.FindName("Path_74")));
     this.Path_75   = ((System.Windows.Shapes.Path)(this.FindName("Path_75")));
     this.Path_76   = ((System.Windows.Shapes.Path)(this.FindName("Path_76")));
     this.Path_77   = ((System.Windows.Shapes.Path)(this.FindName("Path_77")));
     this.Path_78   = ((System.Windows.Shapes.Path)(this.FindName("Path_78")));
     this.Path_79   = ((System.Windows.Shapes.Path)(this.FindName("Path_79")));
     this.Path_80   = ((System.Windows.Shapes.Path)(this.FindName("Path_80")));
     this.Path_81   = ((System.Windows.Shapes.Path)(this.FindName("Path_81")));
     this.Path_82   = ((System.Windows.Shapes.Path)(this.FindName("Path_82")));
     this.Path_83   = ((System.Windows.Shapes.Path)(this.FindName("Path_83")));
     this.Path_84   = ((System.Windows.Shapes.Path)(this.FindName("Path_84")));
     this.Path_85   = ((System.Windows.Shapes.Path)(this.FindName("Path_85")));
     this.Path_86   = ((System.Windows.Shapes.Path)(this.FindName("Path_86")));
     this.Path_87   = ((System.Windows.Shapes.Path)(this.FindName("Path_87")));
     this.Path_88   = ((System.Windows.Shapes.Path)(this.FindName("Path_88")));
     this.Path_89   = ((System.Windows.Shapes.Path)(this.FindName("Path_89")));
     this.Path_90   = ((System.Windows.Shapes.Path)(this.FindName("Path_90")));
     this.Path_91   = ((System.Windows.Shapes.Path)(this.FindName("Path_91")));
     this.Path_92   = ((System.Windows.Shapes.Path)(this.FindName("Path_92")));
     this.Path_93   = ((System.Windows.Shapes.Path)(this.FindName("Path_93")));
     this.Path_94   = ((System.Windows.Shapes.Path)(this.FindName("Path_94")));
     this.Line      = ((System.Windows.Shapes.Path)(this.FindName("Line")));
     this.Path_95   = ((System.Windows.Shapes.Path)(this.FindName("Path_95")));
     this.Path_96   = ((System.Windows.Shapes.Path)(this.FindName("Path_96")));
     this.Path_97   = ((System.Windows.Shapes.Path)(this.FindName("Path_97")));
     this.Path_98   = ((System.Windows.Shapes.Path)(this.FindName("Path_98")));
     this.Path_99   = ((System.Windows.Shapes.Path)(this.FindName("Path_99")));
     this.Path_100  = ((System.Windows.Shapes.Path)(this.FindName("Path_100")));
     this.Path_101  = ((System.Windows.Shapes.Path)(this.FindName("Path_101")));
     this.Path_102  = ((System.Windows.Shapes.Path)(this.FindName("Path_102")));
     this.Path_103  = ((System.Windows.Shapes.Path)(this.FindName("Path_103")));
     this.Path_104  = ((System.Windows.Shapes.Path)(this.FindName("Path_104")));
     this.Path_105  = ((System.Windows.Shapes.Path)(this.FindName("Path_105")));
     this.Path_106  = ((System.Windows.Shapes.Path)(this.FindName("Path_106")));
     this.Path_107  = ((System.Windows.Shapes.Path)(this.FindName("Path_107")));
     this.Path_108  = ((System.Windows.Shapes.Path)(this.FindName("Path_108")));
     this.Path_109  = ((System.Windows.Shapes.Path)(this.FindName("Path_109")));
     this.Path_110  = ((System.Windows.Shapes.Path)(this.FindName("Path_110")));
     this.Path_111  = ((System.Windows.Shapes.Path)(this.FindName("Path_111")));
     this.Path_112  = ((System.Windows.Shapes.Path)(this.FindName("Path_112")));
     this.Path_113  = ((System.Windows.Shapes.Path)(this.FindName("Path_113")));
     this.Path_114  = ((System.Windows.Shapes.Path)(this.FindName("Path_114")));
     this.Path_115  = ((System.Windows.Shapes.Path)(this.FindName("Path_115")));
     this.Path_116  = ((System.Windows.Shapes.Path)(this.FindName("Path_116")));
     this.Path_117  = ((System.Windows.Shapes.Path)(this.FindName("Path_117")));
     this.Path_118  = ((System.Windows.Shapes.Path)(this.FindName("Path_118")));
     this.Path_119  = ((System.Windows.Shapes.Path)(this.FindName("Path_119")));
     this.Path_120  = ((System.Windows.Shapes.Path)(this.FindName("Path_120")));
     this.Path_121  = ((System.Windows.Shapes.Path)(this.FindName("Path_121")));
     this.Path_122  = ((System.Windows.Shapes.Path)(this.FindName("Path_122")));
     this.Path_123  = ((System.Windows.Shapes.Path)(this.FindName("Path_123")));
     this.Path_124  = ((System.Windows.Shapes.Path)(this.FindName("Path_124")));
     this.Path_125  = ((System.Windows.Shapes.Path)(this.FindName("Path_125")));
     this.Path_126  = ((System.Windows.Shapes.Path)(this.FindName("Path_126")));
     this.Path_127  = ((System.Windows.Shapes.Path)(this.FindName("Path_127")));
     this.Path_128  = ((System.Windows.Shapes.Path)(this.FindName("Path_128")));
     this.Path_129  = ((System.Windows.Shapes.Path)(this.FindName("Path_129")));
     this.Path_130  = ((System.Windows.Shapes.Path)(this.FindName("Path_130")));
     this.Path_131  = ((System.Windows.Shapes.Path)(this.FindName("Path_131")));
     this.Path_132  = ((System.Windows.Shapes.Path)(this.FindName("Path_132")));
     this.Path_133  = ((System.Windows.Shapes.Path)(this.FindName("Path_133")));
     this.Path_134  = ((System.Windows.Shapes.Path)(this.FindName("Path_134")));
     this.Path_135  = ((System.Windows.Shapes.Path)(this.FindName("Path_135")));
     this.Path_136  = ((System.Windows.Shapes.Path)(this.FindName("Path_136")));
     this.Path_137  = ((System.Windows.Shapes.Path)(this.FindName("Path_137")));
     this.Path_138  = ((System.Windows.Shapes.Path)(this.FindName("Path_138")));
     this.Path_139  = ((System.Windows.Shapes.Path)(this.FindName("Path_139")));
     this.Path_140  = ((System.Windows.Shapes.Path)(this.FindName("Path_140")));
     this.Path_141  = ((System.Windows.Shapes.Path)(this.FindName("Path_141")));
     this.Path_142  = ((System.Windows.Shapes.Path)(this.FindName("Path_142")));
     this.Path_143  = ((System.Windows.Shapes.Path)(this.FindName("Path_143")));
     this.Path_144  = ((System.Windows.Shapes.Path)(this.FindName("Path_144")));
     this.Path_145  = ((System.Windows.Shapes.Path)(this.FindName("Path_145")));
     this.Path_146  = ((System.Windows.Shapes.Path)(this.FindName("Path_146")));
     this.Path_147  = ((System.Windows.Shapes.Path)(this.FindName("Path_147")));
     this.Path_148  = ((System.Windows.Shapes.Path)(this.FindName("Path_148")));
     this.Path_149  = ((System.Windows.Shapes.Path)(this.FindName("Path_149")));
     this.Path_150  = ((System.Windows.Shapes.Path)(this.FindName("Path_150")));
     this.Path_151  = ((System.Windows.Shapes.Path)(this.FindName("Path_151")));
     this.Path_152  = ((System.Windows.Shapes.Path)(this.FindName("Path_152")));
     this.Path_153  = ((System.Windows.Shapes.Path)(this.FindName("Path_153")));
     this.Path_154  = ((System.Windows.Shapes.Path)(this.FindName("Path_154")));
     this.Path_155  = ((System.Windows.Shapes.Path)(this.FindName("Path_155")));
     this.Path_156  = ((System.Windows.Shapes.Path)(this.FindName("Path_156")));
     this.Path_157  = ((System.Windows.Shapes.Path)(this.FindName("Path_157")));
     this.Path_158  = ((System.Windows.Shapes.Path)(this.FindName("Path_158")));
     this.Path_159  = ((System.Windows.Shapes.Path)(this.FindName("Path_159")));
     this.Path_160  = ((System.Windows.Shapes.Path)(this.FindName("Path_160")));
 }
Beispiel #43
0
        void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target)
        {
            switch (connectionId)
            {
            case 1:
                this.loader = ((PreLoader.CustomControls.PreLoaderControl)(target));
                return;

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

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

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

            #line 52 "..\..\..\View\Main.xaml"
                this.popupMasteropen.Click += new System.Windows.RoutedEventHandler(this.popupMasteropen_Click);

            #line default
            #line hidden
                return;

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

            #line 53 "..\..\..\View\Main.xaml"
                this.btnpermissions.Click += new System.Windows.RoutedEventHandler(this.btnpermissions_Click);

            #line default
            #line hidden
                return;

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

            #line 55 "..\..\..\View\Main.xaml"
                this.minimize.Click += new System.Windows.RoutedEventHandler(this.minimize_Click);

            #line default
            #line hidden
                return;

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

            #line 57 "..\..\..\View\Main.xaml"
                this.logout.Click += new System.Windows.RoutedEventHandler(this.logout_Click);

            #line default
            #line hidden
                return;

            case 8:
                this.GridMenu = ((System.Windows.Controls.Grid)(target));
                return;

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

            #line 65 "..\..\..\View\Main.xaml"
                this.Btnclsmenu.Click += new System.Windows.RoutedEventHandler(this.Btnclsmenu_Click);

            #line default
            #line hidden
                return;

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

            #line 68 "..\..\..\View\Main.xaml"
                this.btnopenmenu.Click += new System.Windows.RoutedEventHandler(this.btnopenmenu_Click);

            #line default
            #line hidden
                return;

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

            #line 74 "..\..\..\View\Main.xaml"
                this.btndashboard.Click += new System.Windows.RoutedEventHandler(this.btndashboard_Click);

            #line default
            #line hidden
                return;

            case 12:
                this.mainoperation = ((System.Windows.Controls.ListViewItem)(target));
                return;

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

            #line 82 "..\..\..\View\Main.xaml"
                this.btnhome.Click += new System.Windows.RoutedEventHandler(this.btnhome_Click);

            #line default
            #line hidden
                return;

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

            #line 90 "..\..\..\View\Main.xaml"
                this.btnopr.Click += new System.Windows.RoutedEventHandler(this.btnopr_Click);

            #line default
            #line hidden
                return;

            case 15:
                this.Report = ((System.Windows.Controls.ListViewItem)(target));
                return;

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

            case 17:
                this.btnexprt = ((System.Windows.Controls.MenuItem)(target));

            #line 113 "..\..\..\View\Main.xaml"
                this.btnexprt.Click += new System.Windows.RoutedEventHandler(this.btnexprt_Click);

            #line default
            #line hidden
                return;

            case 18:
                this.FOT = ((System.Windows.Controls.MenuItem)(target));

            #line 114 "..\..\..\View\Main.xaml"
                this.FOT.Click += new System.Windows.RoutedEventHandler(this.FOT_Click);

            #line default
            #line hidden
                return;

            case 19:
                this.PB = ((System.Windows.Controls.MenuItem)(target));

            #line 115 "..\..\..\View\Main.xaml"
                this.PB.Click += new System.Windows.RoutedEventHandler(this.PB_Click);

            #line default
            #line hidden
                return;

            case 20:
                this.mDep = ((System.Windows.Controls.MenuItem)(target));

            #line 116 "..\..\..\View\Main.xaml"
                this.mDep.Click += new System.Windows.RoutedEventHandler(this.mDep_Click);

            #line default
            #line hidden
                return;

            case 21:
                this.mTodayRes = ((System.Windows.Controls.MenuItem)(target));

            #line 117 "..\..\..\View\Main.xaml"
                this.mTodayRes.Click += new System.Windows.RoutedEventHandler(this.mTodayRes_Click);

            #line default
            #line hidden
                return;

            case 22:
                this.mGuestInHouse = ((System.Windows.Controls.MenuItem)(target));

            #line 118 "..\..\..\View\Main.xaml"
                this.mGuestInHouse.Click += new System.Windows.RoutedEventHandler(this.mGuestInHouse_Click);

            #line default
            #line hidden
                return;

            case 23:
                this.mDailyCheckouts = ((System.Windows.Controls.MenuItem)(target));

            #line 119 "..\..\..\View\Main.xaml"
                this.mDailyCheckouts.Click += new System.Windows.RoutedEventHandler(this.mDailyCheckouts_Click);

            #line default
            #line hidden
                return;

            case 24:
                this.mRoomRate = ((System.Windows.Controls.MenuItem)(target));

            #line 120 "..\..\..\View\Main.xaml"
                this.mRoomRate.Click += new System.Windows.RoutedEventHandler(this.mRoomRate_Click);

            #line default
            #line hidden
                return;

            case 25:
                this.mPlan = ((System.Windows.Controls.MenuItem)(target));

            #line 121 "..\..\..\View\Main.xaml"
                this.mPlan.Click += new System.Windows.RoutedEventHandler(this.mPlan_Click);

            #line default
            #line hidden
                return;

            case 26:
                this.mRoomOccu = ((System.Windows.Controls.MenuItem)(target));

            #line 122 "..\..\..\View\Main.xaml"
                this.mRoomOccu.Click += new System.Windows.RoutedEventHandler(this.mRoomOccu_Click);

            #line default
            #line hidden
                return;

            case 27:
                this.mDailyDis = ((System.Windows.Controls.MenuItem)(target));

            #line 123 "..\..\..\View\Main.xaml"
                this.mDailyDis.Click += new System.Windows.RoutedEventHandler(this.mDailyDis_Click);

            #line default
            #line hidden
                return;

            case 28:
                this.mResList = ((System.Windows.Controls.MenuItem)(target));

            #line 124 "..\..\..\View\Main.xaml"
                this.mResList.Click += new System.Windows.RoutedEventHandler(this.mResList_Click);

            #line default
            #line hidden
                return;

            case 29:
                this.mCanlRes = ((System.Windows.Controls.MenuItem)(target));

            #line 125 "..\..\..\View\Main.xaml"
                this.mCanlRes.Click += new System.Windows.RoutedEventHandler(this.mCanlRes_Click);

            #line default
            #line hidden
                return;

            case 30:
                this.mOutStandBalance = ((System.Windows.Controls.MenuItem)(target));

            #line 126 "..\..\..\View\Main.xaml"
                this.mOutStandBalance.Click += new System.Windows.RoutedEventHandler(this.mOutStandBalance_Click);

            #line default
            #line hidden
                return;

            case 31:
                this.mTransList = ((System.Windows.Controls.MenuItem)(target));

            #line 127 "..\..\..\View\Main.xaml"
                this.mTransList.Click += new System.Windows.RoutedEventHandler(this.mTransList_Click);

            #line default
            #line hidden
                return;

            case 32:
                this.mGuestAdvance = ((System.Windows.Controls.MenuItem)(target));

            #line 128 "..\..\..\View\Main.xaml"
                this.mGuestAdvance.Click += new System.Windows.RoutedEventHandler(this.mGuestAdvance_Click);

            #line default
            #line hidden
                return;

            case 33:
                this.mMWRoomTariff = ((System.Windows.Controls.MenuItem)(target));

            #line 129 "..\..\..\View\Main.xaml"
                this.mMWRoomTariff.Click += new System.Windows.RoutedEventHandler(this.mMWRoomTariff_Click);

            #line default
            #line hidden
                return;

            case 34:
                this.mMontlyDis = ((System.Windows.Controls.MenuItem)(target));

            #line 130 "..\..\..\View\Main.xaml"
                this.mMontlyDis.Click += new System.Windows.RoutedEventHandler(this.mMontlyDis_Click);

            #line default
            #line hidden
                return;

            case 35:
                this.mMonthlyBillGst = ((System.Windows.Controls.MenuItem)(target));

            #line 131 "..\..\..\View\Main.xaml"
                this.mMonthlyBillGst.Click += new System.Windows.RoutedEventHandler(this.MMonthlyBillGst_Click);

            #line default
            #line hidden
                return;

            case 36:
                this.mDailyTar = ((System.Windows.Controls.MenuItem)(target));

            #line 132 "..\..\..\View\Main.xaml"
                this.mDailyTar.Click += new System.Windows.RoutedEventHandler(this.mDailyTar_Click);

            #line default
            #line hidden
                return;

            case 37:
                this.mDailyTax = ((System.Windows.Controls.MenuItem)(target));

            #line 134 "..\..\..\View\Main.xaml"
                this.mDailyTax.Click += new System.Windows.RoutedEventHandler(this.mDailyTax_Click);

            #line default
            #line hidden
                return;

            case 38:
                this.mMonthlyTax = ((System.Windows.Controls.MenuItem)(target));

            #line 135 "..\..\..\View\Main.xaml"
                this.mMonthlyTax.Click += new System.Windows.RoutedEventHandler(this.mMonthlyTax_Click);

            #line default
            #line hidden
                return;

            case 39:
                this.Viewframe = ((System.Windows.Controls.Viewbox)(target));
                return;

            case 40:
                this.frame = ((System.Windows.Controls.Frame)(target));
                return;

            case 41:
                this.PreLoaderPopup = ((System.Windows.Controls.Primitives.Popup)(target));
                return;

            case 42:
                this.preloader = ((MaterialDesignThemes.Wpf.Card)(target));
                return;
            }
            this._contentLoaded = true;
        }
        void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target)
        {
            switch (connectionId)
            {
            case 1:

            #line 7 "..\..\..\MainWindow.xaml"
                ((Microsoft.Samples.Kinect.DiscreteGestureBasics.MainWindow)(target)).Closing += new System.ComponentModel.CancelEventHandler(this.MainWindow_Closing);

            #line default
            #line hidden
                return;

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

            case 3:
                this.kinectBodyViewbox = ((System.Windows.Controls.Viewbox)(target));
                return;

            case 4:
                this.sagittal = ((System.Windows.Controls.TextBlock)(target));
                return;

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

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

            case 7:
                this.flexAngle = ((System.Windows.Controls.TextBlock)(target));
                return;

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

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

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

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

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

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

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

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

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

            #line default
            #line hidden
                return;
            }
            this._contentLoaded = true;
        }
 void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) {
     switch (connectionId)
     {
     case 1:
     
     #line 6 "..\..\..\Views\CAuditwindow.xaml"
     ((BMC.Presentation.CAuditView)(target)).Loaded += new System.Windows.RoutedEventHandler(this.Window_Loaded);
     
     #line default
     #line hidden
     return;
     case 2:
     this.Root = ((System.Windows.Controls.Canvas)(target));
     return;
     case 3:
     this.pnlHeader = ((System.Windows.Controls.Grid)(target));
     return;
     case 4:
     this.btnExit = ((System.Windows.Controls.Button)(target));
     
     #line 243 "..\..\..\Views\CAuditwindow.xaml"
     this.btnExit.Click += new System.Windows.RoutedEventHandler(this.btnExit_Click);
     
     #line default
     #line hidden
     return;
     case 5:
     this.tbHeader = ((System.Windows.Controls.TextBlock)(target));
     return;
     case 6:
     this.txtModule = ((System.Windows.Controls.TextBlock)(target));
     return;
     case 7:
     this.cmbModules = ((System.Windows.Controls.ComboBox)(target));
     return;
     case 8:
     this.vbStartDate = ((System.Windows.Controls.Viewbox)(target));
     return;
     case 9:
     this.dtpStartDate = ((Microsoft.Windows.Controls.DatePicker)(target));
     
     #line 253 "..\..\..\Views\CAuditwindow.xaml"
     this.dtpStartDate.SelectedDateChanged += new System.EventHandler<System.Windows.Controls.SelectionChangedEventArgs>(this.dtpStartDate_SelectedDateChanged);
     
     #line default
     #line hidden
     return;
     case 10:
     this.tmpStartTime = ((AC.AvalonControlsLibrary.Controls.TimePicker)(target));
     
     #line 254 "..\..\..\Views\CAuditwindow.xaml"
     this.tmpStartTime.SelectedTimeChanged += new AC.AvalonControlsLibrary.Controls.TimeSelectedChangedEventHandler(this.tmpStartTime_SelectedTimeChanged);
     
     #line default
     #line hidden
     return;
     case 11:
     this.vbEndDate = ((System.Windows.Controls.Viewbox)(target));
     return;
     case 12:
     this.dtpEndDate = ((Microsoft.Windows.Controls.DatePicker)(target));
     
     #line 256 "..\..\..\Views\CAuditwindow.xaml"
     this.dtpEndDate.SelectedDateChanged += new System.EventHandler<System.Windows.Controls.SelectionChangedEventArgs>(this.dtpEndDate_SelectedDateChanged);
     
     #line default
     #line hidden
     return;
     case 13:
     this.tmpEndTime = ((AC.AvalonControlsLibrary.Controls.TimePicker)(target));
     
     #line 258 "..\..\..\Views\CAuditwindow.xaml"
     this.tmpEndTime.SelectedTimeChanged += new AC.AvalonControlsLibrary.Controls.TimeSelectedChangedEventHandler(this.tmpEndTime_SelectedTimeChanged);
     
     #line default
     #line hidden
     return;
     case 14:
     this.btnViewAudit = ((System.Windows.Controls.Button)(target));
     
     #line 259 "..\..\..\Views\CAuditwindow.xaml"
     this.btnViewAudit.Click += new System.Windows.RoutedEventHandler(this.btnViewAudit_Click);
     
     #line default
     #line hidden
     return;
     case 15:
     this.cmbRows = ((System.Windows.Controls.ComboBox)(target));
     return;
     case 16:
     this.GridMain = ((System.Windows.Controls.Grid)(target));
     return;
     case 17:
     this.grdAudit = ((System.Windows.Controls.Grid)(target));
     return;
     case 18:
     this.lvAuditView = ((Microsoft.Windows.Controls.DataGrid)(target));
     return;
     case 19:
     this.GridAFT = ((System.Windows.Controls.Grid)(target));
     return;
     case 20:
     this.lvAFTView = ((Microsoft.Windows.Controls.DataGrid)(target));
     return;
     case 21:
     this.btnShowReport = ((System.Windows.Controls.Button)(target));
     
     #line 340 "..\..\..\Views\CAuditwindow.xaml"
     this.btnShowReport.Click += new System.Windows.RoutedEventHandler(this.btnShowReport_Click);
     
     #line default
     #line hidden
     return;
     case 22:
     this.btnToggle = ((System.Windows.Controls.Button)(target));
     
     #line 341 "..\..\..\Views\CAuditwindow.xaml"
     this.btnToggle.Click += new System.Windows.RoutedEventHandler(this.btnToggle_Click);
     
     #line default
     #line hidden
     return;
     }
     this._contentLoaded = true;
 }
Beispiel #46
0
        void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target)
        {
            switch (connectionId)
            {
            case 1:

            #line 4 "..\..\..\Windows\Principal.xaml"
                ((Cs_Gerencial.Windows.Principal)(target)).Loaded += new System.Windows.RoutedEventHandler(this.Window_Loaded);

            #line default
            #line hidden

            #line 4 "..\..\..\Windows\Principal.xaml"
                ((Cs_Gerencial.Windows.Principal)(target)).Closed += new System.EventHandler(this.Window_Closed);

            #line default
            #line hidden
                return;

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

            case 3:
                this.MenuItemCadastro = ((System.Windows.Controls.MenuItem)(target));
                return;

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

            #line 20 "..\..\..\Windows\Principal.xaml"
                this.MenuSubItemUsuario.Click += new System.Windows.RoutedEventHandler(this.MenuSubItemUsuario_Click);

            #line default
            #line hidden
                return;

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

            #line 25 "..\..\..\Windows\Principal.xaml"
                this.MenuSubItemServentia.Click += new System.Windows.RoutedEventHandler(this.MenuSubItemServentia_Click);

            #line default
            #line hidden
                return;

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

            #line 30 "..\..\..\Windows\Principal.xaml"
                this.MenuSubItemImprimirIndisponibilidade.Click += new System.Windows.RoutedEventHandler(this.MenuSubItemImprimirIndisponibilidade_Click);

            #line default
            #line hidden
                return;

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

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

            case 9:
                this.MenuSubItemImprimirSelosReservados = ((System.Windows.Controls.MenuItem)(target));
                return;

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

            case 11:
                this.MenuSubItemImprimirSelos = ((System.Windows.Controls.MenuItem)(target));
                return;

            case 12:
                this.MenuItemParametros = ((System.Windows.Controls.MenuItem)(target));
                return;

            case 13:
                this.MenuSubItemSenha = ((System.Windows.Controls.MenuItem)(target));

            #line 59 "..\..\..\Windows\Principal.xaml"
                this.MenuSubItemSenha.Click += new System.Windows.RoutedEventHandler(this.MenuSubItemSenha_Click);

            #line default
            #line hidden
                return;

            case 14:
                this.MenuSubItemConfigDiretorios = ((System.Windows.Controls.MenuItem)(target));

            #line 64 "..\..\..\Windows\Principal.xaml"
                this.MenuSubItemConfigDiretorios.Click += new System.Windows.RoutedEventHandler(this.MenuSubItemConfigDiretorios_Click);

            #line default
            #line hidden
                return;

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

            #line 79 "..\..\..\Windows\Principal.xaml"
                this.btnSeloEletronico.Click += new System.Windows.RoutedEventHandler(this.btnSeloEletronico_Click);

            #line default
            #line hidden
                return;

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

            #line 103 "..\..\..\Windows\Principal.xaml"
                this.btnLancamentos.Click += new System.Windows.RoutedEventHandler(this.btnLancamentos_Click);

            #line default
            #line hidden
                return;

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

            #line 127 "..\..\..\Windows\Principal.xaml"
                this.btnFornecedores.Click += new System.Windows.RoutedEventHandler(this.btnFornecedores_Click);

            #line default
            #line hidden
                return;

            case 18:
                this.btnBancos = ((System.Windows.Controls.Button)(target));

            #line 151 "..\..\..\Windows\Principal.xaml"
                this.btnBancos.Click += new System.Windows.RoutedEventHandler(this.btnBancos_Click);

            #line default
            #line hidden
                return;

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

            #line 175 "..\..\..\Windows\Principal.xaml"
                this.btnPlanos.Click += new System.Windows.RoutedEventHandler(this.btnPlanos_Click);

            #line default
            #line hidden
                return;

            case 20:
                this.viewbox1 = ((System.Windows.Controls.Viewbox)(target));
                return;

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

            case 22:
                this.lblNomeCartorio = ((System.Windows.Controls.Label)(target));
                return;
            }
            this._contentLoaded = true;
        }
Beispiel #47
0
 public void InitializeComponent()
 {
     if (_contentLoaded)
     {
         return;
     }
     _contentLoaded = true;
     System.Windows.Application.LoadComponent(this, new System.Uri("/Galatee.Silverlight;component/Devis/UcOrdreDeTravail.xaml", System.UriKind.Relative));
     this.LayoutRoot = ((System.Windows.Controls.Grid)(this.FindName("LayoutRoot")));
     this.tabControl_Consultation = ((System.Windows.Controls.TabControl)(this.FindName("tabControl_Consultation")));
     this.tabItemDevis            = ((System.Windows.Controls.TabItem)(this.FindName("tabItemDevis")));
     this.Gbo_InformationDevis    = ((SilverlightContrib.Controls.GroupBox)(this.FindName("Gbo_InformationDevis")));
     this.Txt_NumeroDevis         = ((System.Windows.Controls.TextBox)(this.FindName("Txt_NumeroDevis")));
     this.lbl_Devis                   = ((System.Windows.Controls.Label)(this.FindName("lbl_Devis")));
     this.Txt_Ordre                   = ((System.Windows.Controls.TextBox)(this.FindName("Txt_Ordre")));
     this.Txt_CodeSite                = ((System.Windows.Controls.TextBox)(this.FindName("Txt_CodeSite")));
     this.lbl_Site                    = ((System.Windows.Controls.Label)(this.FindName("lbl_Site")));
     this.Txt_LibelleSite             = ((System.Windows.Controls.TextBox)(this.FindName("Txt_LibelleSite")));
     this.Txt_CodeCentre              = ((System.Windows.Controls.TextBox)(this.FindName("Txt_CodeCentre")));
     this.lbl_Centre                  = ((System.Windows.Controls.Label)(this.FindName("lbl_Centre")));
     this.Txt_LibelleCentre           = ((System.Windows.Controls.TextBox)(this.FindName("Txt_LibelleCentre")));
     this.Txt_LibelleProduit          = ((System.Windows.Controls.TextBox)(this.FindName("Txt_LibelleProduit")));
     this.lbl_Produit                 = ((System.Windows.Controls.Label)(this.FindName("lbl_Produit")));
     this.Txt_CodeProduit             = ((System.Windows.Controls.TextBox)(this.FindName("Txt_CodeProduit")));
     this.Txt_LibelleTypeDevis        = ((System.Windows.Controls.TextBox)(this.FindName("Txt_LibelleTypeDevis")));
     this.Txt_EtapeCourante           = ((System.Windows.Controls.TextBox)(this.FindName("Txt_EtapeCourante")));
     this.Txt_EtapeSuivante           = ((System.Windows.Controls.TextBox)(this.FindName("Txt_EtapeSuivante")));
     this.lbl_TypeDevis               = ((System.Windows.Controls.Label)(this.FindName("lbl_TypeDevis")));
     this.lbl_EtapeEnCours            = ((System.Windows.Controls.Label)(this.FindName("lbl_EtapeEnCours")));
     this.lbl_EtapeSuivante           = ((System.Windows.Controls.Label)(this.FindName("lbl_EtapeSuivante")));
     this.tabItemDemandeur            = ((System.Windows.Controls.TabItem)(this.FindName("tabItemDemandeur")));
     this.Gbo_InformationDemandeDevis = ((SilverlightContrib.Controls.GroupBox)(this.FindName("Gbo_InformationDemandeDevis")));
     this.lbl_Nom              = ((System.Windows.Controls.Label)(this.FindName("lbl_Nom")));
     this.Txt_NomClient        = ((System.Windows.Controls.TextBox)(this.FindName("Txt_NomClient")));
     this.lab_Tournee          = ((System.Windows.Controls.Label)(this.FindName("lab_Tournee")));
     this.lbl_CategorieClient  = ((System.Windows.Controls.Label)(this.FindName("lbl_CategorieClient")));
     this.lbl_Telephone        = ((System.Windows.Controls.Label)(this.FindName("lbl_Telephone")));
     this.txt_Telephone        = ((System.Windows.Controls.TextBox)(this.FindName("txt_Telephone")));
     this.lbl_NumLot           = ((System.Windows.Controls.Label)(this.FindName("lbl_NumLot")));
     this.txt_NumLot           = ((System.Windows.Controls.TextBox)(this.FindName("txt_NumLot")));
     this.lbl_Piece            = ((System.Windows.Controls.Label)(this.FindName("lbl_Piece")));
     this.lbl_Commune          = ((System.Windows.Controls.Label)(this.FindName("lbl_Commune")));
     this.txt_Commune          = ((System.Windows.Controls.TextBox)(this.FindName("txt_Commune")));
     this.lbl_Quartier         = ((System.Windows.Controls.Label)(this.FindName("lbl_Quartier")));
     this.txt_Quartier         = ((System.Windows.Controls.TextBox)(this.FindName("txt_Quartier")));
     this.lbl_Rue              = ((System.Windows.Controls.Label)(this.FindName("lbl_Rue")));
     this.txt_NumRue           = ((System.Windows.Controls.TextBox)(this.FindName("txt_NumRue")));
     this.lbl_Poteau           = ((System.Windows.Controls.Label)(this.FindName("lbl_Poteau")));
     this.txtPoteau            = ((System.Windows.Controls.TextBox)(this.FindName("txtPoteau")));
     this.lbl_NumPiece         = ((System.Windows.Controls.Label)(this.FindName("lbl_NumPiece")));
     this.txtPropriete         = ((System.Windows.Controls.TextBox)(this.FindName("txtPropriete")));
     this.lbl_Adresse          = ((System.Windows.Controls.Label)(this.FindName("lbl_Adresse")));
     this.txtAdresse           = ((System.Windows.Controls.TextBox)(this.FindName("txtAdresse")));
     this.lbl_Proprio          = ((System.Windows.Controls.Label)(this.FindName("lbl_Proprio")));
     this.lbl_Calibre          = ((System.Windows.Controls.Label)(this.FindName("lbl_Calibre")));
     this.txtNumeroPiece       = ((System.Windows.Controls.TextBox)(this.FindName("txtNumeroPiece")));
     this.Txt_LibelleCommune   = ((System.Windows.Controls.TextBox)(this.FindName("Txt_LibelleCommune")));
     this.Txt_LibelleQuartier  = ((System.Windows.Controls.TextBox)(this.FindName("Txt_LibelleQuartier")));
     this.Txt_LibelleRue       = ((System.Windows.Controls.TextBox)(this.FindName("Txt_LibelleRue")));
     this.Txt_LibelleDiametre  = ((System.Windows.Controls.TextBox)(this.FindName("Txt_LibelleDiametre")));
     this.Txt_LibelleCategorie = ((System.Windows.Controls.TextBox)(this.FindName("Txt_LibelleCategorie")));
     this.Txt_TypePiece        = ((System.Windows.Controls.TextBox)(this.FindName("Txt_TypePiece")));
     this.Txt_LibelleTournee   = ((System.Windows.Controls.TextBox)(this.FindName("Txt_LibelleTournee")));
     this.lbl_Longitude        = ((System.Windows.Controls.Label)(this.FindName("lbl_Longitude")));
     this.TxtLongitude         = ((System.Windows.Controls.TextBox)(this.FindName("TxtLongitude")));
     this.lbl_latitude         = ((System.Windows.Controls.Label)(this.FindName("lbl_latitude")));
     this.TxtLatitude          = ((System.Windows.Controls.TextBox)(this.FindName("TxtLatitude")));
     this.tabItemAppareils     = ((System.Windows.Controls.TabItem)(this.FindName("tabItemAppareils")));
     this.dtgAppareils         = ((System.Windows.Controls.DataGrid)(this.FindName("dtgAppareils")));
     this.tabItemFournitures   = ((System.Windows.Controls.TabItem)(this.FindName("tabItemFournitures")));
     this.dataGridForniture    = ((System.Windows.Controls.DataGrid)(this.FindName("dataGridForniture")));
     this.lbl_TotalHT          = ((System.Windows.Controls.Label)(this.FindName("lbl_TotalHT")));
     this.Txt_TotalHt          = ((System.Windows.Controls.TextBox)(this.FindName("Txt_TotalHt")));
     this.lbl_TotalTTC         = ((System.Windows.Controls.Label)(this.FindName("lbl_TotalTTC")));
     this.Txt_TotalTtc         = ((System.Windows.Controls.TextBox)(this.FindName("Txt_TotalTtc")));
     this.lbl_TotalTVA         = ((System.Windows.Controls.Label)(this.FindName("lbl_TotalTVA")));
     this.Txt_TotalTva         = ((System.Windows.Controls.TextBox)(this.FindName("Txt_TotalTva")));
     this.tabItemOT            = ((System.Windows.Controls.TabItem)(this.FindName("tabItemOT")));
     this.label1                      = ((System.Windows.Controls.Label)(this.FindName("label1")));
     this.TxtNumeroDevis              = ((System.Windows.Controls.TextBox)(this.FindName("TxtNumeroDevis")));
     this.DtpDebutTravaux             = ((System.Windows.Controls.DatePicker)(this.FindName("DtpDebutTravaux")));
     this.labDateDebutTravaux         = ((System.Windows.Controls.Label)(this.FindName("labDateDebutTravaux")));
     this.DtpFinTravaux               = ((System.Windows.Controls.DatePicker)(this.FindName("DtpFinTravaux")));
     this.labFintravaux               = ((System.Windows.Controls.Label)(this.FindName("labFintravaux")));
     this.labPoteau                   = ((System.Windows.Controls.Label)(this.FindName("labPoteau")));
     this.Txt_Prestataire             = ((System.Windows.Controls.TextBox)(this.FindName("Txt_Prestataire")));
     this.TxtMatricule                = ((System.Windows.Controls.TextBox)(this.FindName("TxtMatricule")));
     this.TxtNomAgent                 = ((System.Windows.Controls.TextBox)(this.FindName("TxtNomAgent")));
     this.label1_Copy                 = ((System.Windows.Controls.Label)(this.FindName("label1_Copy")));
     this.TxtSectionCable             = ((System.Windows.Controls.TextBox)(this.FindName("TxtSectionCable")));
     this.tabItemSuivie               = ((System.Windows.Controls.TabItem)(this.FindName("tabItemSuivie")));
     this.labDateDebutTravaux1        = ((System.Windows.Controls.Label)(this.FindName("labDateDebutTravaux1")));
     this.labPoteau_Copy1             = ((System.Windows.Controls.Label)(this.FindName("labPoteau_Copy1")));
     this.Txt_CommentaireTrx          = ((System.Windows.Controls.TextBox)(this.FindName("Txt_CommentaireTrx")));
     this.labelDistanceExtension_Copy = ((System.Windows.Controls.Label)(this.FindName("labelDistanceExtension_Copy")));
     this.Txt_NbrCableSection         = ((System.Windows.Controls.TextBox)(this.FindName("Txt_NbrCableSection")));
     this.Txt_DateTravaux             = ((System.Windows.Controls.TextBox)(this.FindName("Txt_DateTravaux")));
     this.tabPieceJointe_Copy         = ((System.Windows.Controls.TabItem)(this.FindName("tabPieceJointe_Copy")));
     this.Vwb            = ((System.Windows.Controls.Viewbox)(this.FindName("Vwb")));
     this.CancelButton   = ((System.Windows.Controls.Button)(this.FindName("CancelButton")));
     this.btn_Enregister = ((System.Windows.Controls.Button)(this.FindName("btn_Enregister")));
     this.btn_transmetre = ((System.Windows.Controls.Button)(this.FindName("btn_transmetre")));
     this.RejeterButton  = ((System.Windows.Controls.Button)(this.FindName("RejeterButton")));
 }
        void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target)
        {
            switch (connectionId)
            {
            case 1:
                this.fieldColorRectangle = ((System.Windows.Shapes.Rectangle)(target));
                return;

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

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

            case 4:
                this.Train = ((System.Windows.Controls.Viewbox)(target));
                return;

            case 5:
                this.svg3713 = ((System.Windows.Controls.Canvas)(target));
                return;

            case 6:
                this.path3723 = ((System.Windows.Shapes.Path)(target));
                return;

            case 7:
                this.Bulb = ((System.Windows.Controls.Viewbox)(target));
                return;

            case 8:
                this.svg10 = ((System.Windows.Controls.Canvas)(target));
                return;

            case 9:
                this.g20 = ((System.Windows.Controls.Canvas)(target));
                return;

            case 10:
                this.path34 = ((System.Windows.Shapes.Path)(target));
                return;

            case 11:
                this.path32 = ((System.Windows.Shapes.Path)(target));
                return;

            case 12:
                this.path30 = ((System.Windows.Shapes.Path)(target));
                return;

            case 13:
                this.path28 = ((System.Windows.Shapes.Path)(target));
                return;

            case 14:
                this.path26 = ((System.Windows.Shapes.Path)(target));
                return;

            case 15:
                this.path24 = ((System.Windows.Shapes.Path)(target));
                return;

            case 16:
                this.path22 = ((System.Windows.Shapes.Path)(target));
                return;

            case 17:
                this.Water = ((System.Windows.Controls.Viewbox)(target));
                return;

            case 18:
                this.svg11 = ((System.Windows.Controls.Canvas)(target));
                return;

            case 19:
                this.g201 = ((System.Windows.Controls.Canvas)(target));
                return;

            case 20:
                this.path324 = ((System.Windows.Shapes.Path)(target));
                return;

            case 21:
                this.pat2h32 = ((System.Windows.Shapes.Path)(target));
                return;

            case 22:
                this.path230 = ((System.Windows.Shapes.Path)(target));
                return;

            case 23:
                this.path228 = ((System.Windows.Shapes.Path)(target));
                return;

            case 24:
                this.path226 = ((System.Windows.Shapes.Path)(target));
                return;

            case 25:
                this.path224 = ((System.Windows.Shapes.Path)(target));
                return;

            case 26:
                this.path222 = ((System.Windows.Shapes.Path)(target));
                return;

            case 27:
                this.QuestionMark = ((System.Windows.Controls.Viewbox)(target));
                return;

            case 28:
                this.svg36 = ((System.Windows.Controls.Canvas)(target));
                return;

            case 29:
                this.g46 = ((System.Windows.Controls.Canvas)(target));
                return;

            case 30:
                this.path60 = ((System.Windows.Shapes.Path)(target));
                return;

            case 31:
                this.path58 = ((System.Windows.Shapes.Path)(target));
                return;

            case 32:
                this.path56 = ((System.Windows.Shapes.Path)(target));
                return;

            case 33:
                this.path54 = ((System.Windows.Shapes.Path)(target));
                return;

            case 34:
                this.path52 = ((System.Windows.Shapes.Path)(target));
                return;

            case 35:
                this.path50 = ((System.Windows.Shapes.Path)(target));
                return;

            case 36:
                this.path48 = ((System.Windows.Shapes.Path)(target));
                return;

            case 37:
                this.Chest = ((System.Windows.Controls.Viewbox)(target));
                return;

            case 38:
                this.svg62 = ((System.Windows.Controls.Canvas)(target));
                return;

            case 39:
                this.g72 = ((System.Windows.Controls.Canvas)(target));
                return;

            case 40:
                this.path86 = ((System.Windows.Shapes.Path)(target));
                return;

            case 41:
                this.path84 = ((System.Windows.Shapes.Path)(target));
                return;

            case 42:
                this.path82 = ((System.Windows.Shapes.Path)(target));
                return;

            case 43:
                this.path80 = ((System.Windows.Shapes.Path)(target));
                return;

            case 44:
                this.path78 = ((System.Windows.Shapes.Path)(target));
                return;

            case 45:
                this.path76 = ((System.Windows.Shapes.Path)(target));
                return;

            case 46:
                this.path74 = ((System.Windows.Shapes.Path)(target));
                return;

            case 47:
                this.house1 = ((System.Windows.Controls.Viewbox)(target));
                return;

            case 48:
                this.house2 = ((System.Windows.Controls.Viewbox)(target));
                return;

            case 49:
                this.house3 = ((System.Windows.Controls.Viewbox)(target));
                return;

            case 50:
                this.house4 = ((System.Windows.Controls.Viewbox)(target));
                return;

            case 51:
                this.house5 = ((System.Windows.Controls.Viewbox)(target));
                return;

            case 52:
                this.g3743 = ((System.Windows.Controls.Canvas)(target));
                return;

            case 53:
                this.path3755 = ((System.Windows.Shapes.Path)(target));
                return;

            case 54:
                this.path3753 = ((System.Windows.Shapes.Path)(target));
                return;

            case 55:
                this.path3751 = ((System.Windows.Shapes.Path)(target));
                return;

            case 56:
                this.path3749 = ((System.Windows.Shapes.Path)(target));
                return;

            case 57:
                this.path3747 = ((System.Windows.Shapes.Path)(target));
                return;

            case 58:
                this.path3745 = ((System.Windows.Shapes.Path)(target));
                return;

            case 59:
                this.Player1 = ((System.Windows.Shapes.Ellipse)(target));
                return;

            case 60:
                this.Player2 = ((System.Windows.Shapes.Ellipse)(target));
                return;

            case 61:
                this.Player3 = ((System.Windows.Shapes.Ellipse)(target));
                return;

            case 62:
                this.Player4 = ((System.Windows.Shapes.Ellipse)(target));
                return;
            }
            this._contentLoaded = true;
        }
Beispiel #49
0
        void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target)
        {
            switch (connectionId)
            {
            case 1:
                this.tbToolTip = ((System.Windows.Controls.TextBlock)(target));
                return;

            case 2:
                this.MouseStateGroup = ((System.Windows.VisualStateGroup)(target));
                return;

            case 3:
                this.ControlMouseEnter = ((System.Windows.VisualState)(target));
                return;

            case 4:
                this.ControlMouseLeave = ((System.Windows.VisualState)(target));
                return;

            case 5:
                this.ValueStateGroup = ((System.Windows.VisualStateGroup)(target));
                return;

            case 6:
                this.ControlValueON = ((System.Windows.VisualState)(target));
                return;

            case 7:
                this.ControlValueOFF = ((System.Windows.VisualState)(target));
                return;

            case 8:
                this.ControlValueUnknown = ((System.Windows.VisualState)(target));
                return;

            case 9:
                this.ActualStateGroup = ((System.Windows.VisualStateGroup)(target));
                return;

            case 10:
                this.ControlActualTrue = ((System.Windows.VisualState)(target));
                return;

            case 11:
                this.ControlActualFalse = ((System.Windows.VisualState)(target));
                return;

            case 12:
                this.recMouse = ((System.Windows.Shapes.Rectangle)(target));
                return;

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

            case 14:
                this.vwWarning = ((System.Windows.Controls.Viewbox)(target));
                return;
            }
            this._contentLoaded = true;
        }
Beispiel #50
0
        void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target)
        {
            switch (connectionId)
            {
            case 1:

            #line 10 "..\..\MainWindow.xaml"
                ((Good_Teacher_Presentation.MainWindow)(target)).PreviewKeyDown += new System.Windows.Input.KeyEventHandler(this.Window_PreviewKeyDown);

            #line default
            #line hidden

            #line 11 "..\..\MainWindow.xaml"
                ((Good_Teacher_Presentation.MainWindow)(target)).PreviewKeyUp += new System.Windows.Input.KeyEventHandler(this.Window_PreviewKeyUp);

            #line default
            #line hidden

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

            #line default
            #line hidden
                return;

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

            case 3:
                this.ScrollViewerZoom = ((System.Windows.Controls.ScrollViewer)(target));

            #line 24 "..\..\MainWindow.xaml"
                this.ScrollViewerZoom.PreviewMouseWheel += new System.Windows.Input.MouseWheelEventHandler(this.ScrollViewerZoom_PreviewMouseWheel);

            #line default
            #line hidden
                return;

            case 4:
                this.viewboxDC = ((System.Windows.Controls.Viewbox)(target));
                return;

            case 5:
                this.Border_CanvasSize = ((System.Windows.Controls.Border)(target));
                return;

            case 6:
                this.PlayCanvas = ((System.Windows.Controls.Canvas)(target));

            #line 30 "..\..\MainWindow.xaml"
                this.PlayCanvas.MouseLeftButtonUp += new System.Windows.Input.MouseButtonEventHandler(this.PlayCanvas_MouseLeftButtonUp);

            #line default
            #line hidden
                return;

            case 7:
                this.ControlPanelC = ((System.Windows.Controls.Border)(target));
                return;

            case 8:
                this.SP_InputControls = ((System.Windows.Controls.StackPanel)(target));
                return;

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

            #line 54 "..\..\MainWindow.xaml"
                this.TB_CNumber.KeyDown += new System.Windows.Input.KeyEventHandler(this.TB_CNumber_KeyDown);

            #line default
            #line hidden

            #line 54 "..\..\MainWindow.xaml"
                this.TB_CNumber.PreviewTextInput += new System.Windows.Input.TextCompositionEventHandler(this.TextBox_PreviewTextInput);

            #line default
            #line hidden

            #line 54 "..\..\MainWindow.xaml"
                this.TB_CNumber.AddHandler(System.Windows.DataObject.PastingEvent, new System.Windows.DataObjectPastingEventHandler(this.TextBox_Pasting));

            #line default
            #line hidden
                return;

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

            case 11:
                this.FB_PageList = ((Good_Teacher_Presentation.Controls.FlatButton)(target));
                return;

            case 12:
                this.SliderZoom = ((System.Windows.Controls.Slider)(target));

            #line 58 "..\..\MainWindow.xaml"
                this.SliderZoom.ValueChanged += new System.Windows.RoutedPropertyChangedEventHandler <double>(this.SliderZoom_ValueChanged);

            #line default
            #line hidden
                return;

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

            #line 59 "..\..\MainWindow.xaml"
                this.TextBox_Zoom.LostFocus += new System.Windows.RoutedEventHandler(this.TB_Zoom_LostFocus);

            #line default
            #line hidden

            #line 59 "..\..\MainWindow.xaml"
                this.TextBox_Zoom.KeyDown += new System.Windows.Input.KeyEventHandler(this.TB_Zoom_KeyDown);

            #line default
            #line hidden
                return;

            case 14:
                this.FB_Left = ((Good_Teacher_Presentation.Controls.FlatButton)(target));
                return;

            case 15:
                this.FB_Right = ((Good_Teacher_Presentation.Controls.FlatButton)(target));
                return;

            case 16:
                this.FB_Close = ((Good_Teacher_Presentation.Controls.FlatButton)(target));
                return;
            }
            this._contentLoaded = true;
        }
        void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target)
        {
            switch (connectionId)
            {
            case 1:
                this.MainWindow1 = ((Gramatyczni_Wojownicy.MainWindow)(target));

            #line 8 "..\..\MainWindow.xaml"
                this.MainWindow1.Closing += new System.ComponentModel.CancelEventHandler(this.MainWindow1_Closing);

            #line default
            #line hidden
                return;

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

            case 3:
                this.playArea = ((System.Windows.Controls.Canvas)(target));

            #line 89 "..\..\MainWindow.xaml"
                this.playArea.MouseMove += new System.Windows.Input.MouseEventHandler(this.PlayArea_MouseMove);

            #line default
            #line hidden

            #line 89 "..\..\MainWindow.xaml"
                this.playArea.MouseLeave += new System.Windows.Input.MouseEventHandler(this.PlayArea_MouseLeave);

            #line default
            #line hidden
                return;

            case 4:
                this.rocket = ((System.Windows.Controls.Viewbox)(target));

            #line 94 "..\..\MainWindow.xaml"
                this.rocket.MouseLeftButtonDown += new System.Windows.Input.MouseButtonEventHandler(this.Rocket_MouseLeftButtonDown);

            #line default
            #line hidden
                return;

            case 5:
                this.svg8 = ((System.Windows.Controls.Canvas)(target));
                return;

            case 6:
                this.layer1 = ((System.Windows.Controls.Canvas)(target));
                return;

            case 7:
                this.XMLID_1_ = ((System.Windows.Controls.Canvas)(target));
                return;

            case 8:
                this.rocketFlame = ((System.Windows.Shapes.Path)(target));
                return;

            case 9:
                this.smallRocketFlame = ((System.Windows.Shapes.Path)(target));
                return;

            case 10:
                this.XMLID_89_ = ((System.Windows.Shapes.Path)(target));
                return;

            case 11:
                this.XMLID_88_ = ((System.Windows.Shapes.Path)(target));
                return;

            case 12:
                this.XMLID_87_ = ((System.Windows.Controls.Canvas)(target));
                return;

            case 13:
                this.XMLID_25_ = ((System.Windows.Shapes.Path)(target));
                return;

            case 14:
                this.XMLID_22_ = ((System.Windows.Shapes.Path)(target));
                return;

            case 15:
                this.XMLID_86_ = ((System.Windows.Shapes.Path)(target));
                return;

            case 16:
                this.XMLID_85_ = ((System.Windows.Shapes.Path)(target));
                return;

            case 17:
                this.XMLID_82_ = ((System.Windows.Shapes.Path)(target));
                return;

            case 18:
                this.XMLID_76_ = ((System.Windows.Controls.Canvas)(target));
                return;

            case 19:
                this.XMLID_26_ = ((System.Windows.Shapes.Path)(target));
                return;

            case 20:
                this.XMLID_19_ = ((System.Windows.Shapes.Path)(target));
                return;

            case 21:
                this.XMLID_70_ = ((System.Windows.Controls.Canvas)(target));
                return;

            case 22:
                this.XMLID_27_ = ((System.Windows.Shapes.Path)(target));
                return;

            case 23:
                this.XMLID_16_ = ((System.Windows.Shapes.Path)(target));
                return;

            case 24:
                this.XMLID_69_ = ((System.Windows.Shapes.Path)(target));
                return;

            case 25:
                this.XMLID_68_ = ((System.Windows.Shapes.Path)(target));
                return;

            case 26:
                this.XMLID_67_ = ((System.Windows.Shapes.Path)(target));
                return;

            case 27:
                this.XMLID_62_ = ((System.Windows.Shapes.Rectangle)(target));
                return;

            case 28:
                this.XMLID_61_ = ((System.Windows.Shapes.Rectangle)(target));
                return;

            case 29:
                this.XMLID_48_ = ((System.Windows.Shapes.Rectangle)(target));
                return;

            case 30:
                this.XMLID_45_ = ((System.Windows.Shapes.Rectangle)(target));
                return;

            case 31:
                this.rocketPoint = ((System.Windows.Shapes.Ellipse)(target));
                return;

            case 32:
                this.correctPlanet = ((System.Windows.Controls.Viewbox)(target));

            #line 206 "..\..\MainWindow.xaml"
                this.correctPlanet.MouseEnter += new System.Windows.Input.MouseEventHandler(this.CorrectPlanet_MouseEnter);

            #line default
            #line hidden
                return;

            case 33:
                this.planet = ((System.Windows.Controls.Viewbox)(target));
                return;

            case 34:
                this.svg9 = ((System.Windows.Controls.Canvas)(target));
                return;

            case 35:
                this.layer3 = ((System.Windows.Controls.Canvas)(target));
                return;

            case 36:
                this.g3739 = ((System.Windows.Controls.Canvas)(target));
                return;

            case 37:
                this.g3723 = ((System.Windows.Controls.Canvas)(target));
                return;

            case 38:
                this.path3713 = ((System.Windows.Shapes.Path)(target));
                return;

            case 39:
                this.path3715 = ((System.Windows.Shapes.Path)(target));
                return;

            case 40:
                this.path3717 = ((System.Windows.Shapes.Path)(target));
                return;

            case 41:
                this.path3719 = ((System.Windows.Shapes.Path)(target));
                return;

            case 42:
                this.path3721 = ((System.Windows.Shapes.Path)(target));
                return;

            case 43:
                this.correctLabel = ((System.Windows.Controls.Label)(target));
                return;

            case 44:
                this.falsePlanet = ((System.Windows.Controls.Viewbox)(target));

            #line 261 "..\..\MainWindow.xaml"
                this.falsePlanet.MouseEnter += new System.Windows.Input.MouseEventHandler(this.FalsePlanet_MouseEnter);

            #line default
            #line hidden
                return;

            case 45:
                this.planet1 = ((System.Windows.Controls.Viewbox)(target));
                return;

            case 46:
                this.svg1 = ((System.Windows.Controls.Canvas)(target));
                return;

            case 47:
                this.layer2 = ((System.Windows.Controls.Canvas)(target));
                return;

            case 48:
                this.g1 = ((System.Windows.Controls.Canvas)(target));
                return;

            case 49:
                this.g2 = ((System.Windows.Controls.Canvas)(target));
                return;

            case 50:
                this.path1 = ((System.Windows.Shapes.Path)(target));
                return;

            case 51:
                this.path2 = ((System.Windows.Shapes.Path)(target));
                return;

            case 52:
                this.path3 = ((System.Windows.Shapes.Path)(target));
                return;

            case 53:
                this.path4 = ((System.Windows.Shapes.Path)(target));
                return;

            case 54:
                this.path5 = ((System.Windows.Shapes.Path)(target));
                return;

            case 55:
                this.falseLabel = ((System.Windows.Controls.Label)(target));
                return;

            case 56:
                this.rocketExplosion = ((System.Windows.Controls.Viewbox)(target));
                return;

            case 57:
                this.svg = ((System.Windows.Controls.Canvas)(target));
                return;

            case 58:
                this.layer4 = ((System.Windows.Controls.Canvas)(target));
                return;

            case 59:
                this.g100 = ((System.Windows.Controls.Canvas)(target));
                return;

            case 60:
                this.path83 = ((System.Windows.Shapes.Path)(target));
                return;

            case 61:
                this.path85 = ((System.Windows.Shapes.Path)(target));
                return;

            case 62:
                this.wordToDisplayLabel = ((System.Windows.Controls.Label)(target));
                return;

            case 63:
                this.scoreLabel = ((System.Windows.Controls.Label)(target));
                return;

            case 64:
                this.loggedUserLabel = ((System.Windows.Controls.Label)(target));
                return;

            case 65:
                this.helpLabel = ((System.Windows.Controls.Label)(target));
                return;

            case 66:
                this.logo = ((System.Windows.Controls.Image)(target));
                return;

            case 67:
                this.help_label = ((System.Windows.Controls.Label)(target));
                return;

            case 68:
                this.help_label1 = ((System.Windows.Controls.Label)(target));
                return;

            case 69:
                this.startButton = ((System.Windows.Controls.Label)(target));

            #line 362 "..\..\MainWindow.xaml"
                this.startButton.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.StartButton_MouseDown);

            #line default
            #line hidden

            #line 362 "..\..\MainWindow.xaml"
                this.startButton.MouseEnter += new System.Windows.Input.MouseEventHandler(this.Button_MouseEnter);

            #line default
            #line hidden

            #line 362 "..\..\MainWindow.xaml"
                this.startButton.MouseLeave += new System.Windows.Input.MouseEventHandler(this.Button_MouseLeave);

            #line default
            #line hidden
                return;

            case 70:
                this.logInButton = ((System.Windows.Controls.Label)(target));

            #line 363 "..\..\MainWindow.xaml"
                this.logInButton.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.LogIn_Button_MouseDown);

            #line default
            #line hidden

            #line 363 "..\..\MainWindow.xaml"
                this.logInButton.MouseEnter += new System.Windows.Input.MouseEventHandler(this.Button_MouseEnter);

            #line default
            #line hidden

            #line 363 "..\..\MainWindow.xaml"
                this.logInButton.MouseLeave += new System.Windows.Input.MouseEventHandler(this.Button_MouseLeave);

            #line default
            #line hidden
                return;

            case 71:
                this.statisticsButton = ((System.Windows.Controls.Label)(target));

            #line 364 "..\..\MainWindow.xaml"
                this.statisticsButton.MouseEnter += new System.Windows.Input.MouseEventHandler(this.Button_MouseEnter);

            #line default
            #line hidden

            #line 364 "..\..\MainWindow.xaml"
                this.statisticsButton.MouseLeave += new System.Windows.Input.MouseEventHandler(this.Button_MouseLeave);

            #line default
            #line hidden

            #line 364 "..\..\MainWindow.xaml"
                this.statisticsButton.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.StatisticsButton_MouseDown);

            #line default
            #line hidden
                return;

            case 72:
                this.endGameButton = ((System.Windows.Controls.Label)(target));

            #line 365 "..\..\MainWindow.xaml"
                this.endGameButton.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.EndGameButton_MouseDown);

            #line default
            #line hidden

            #line 365 "..\..\MainWindow.xaml"
                this.endGameButton.MouseEnter += new System.Windows.Input.MouseEventHandler(this.Button_MouseEnter);

            #line default
            #line hidden

            #line 365 "..\..\MainWindow.xaml"
                this.endGameButton.MouseLeave += new System.Windows.Input.MouseEventHandler(this.Button_MouseLeave);

            #line default
            #line hidden
                return;

            case 73:
                this.logOutButton = ((System.Windows.Controls.Label)(target));

            #line 366 "..\..\MainWindow.xaml"
                this.logOutButton.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.LogOutButton_Down);

            #line default
            #line hidden

            #line 366 "..\..\MainWindow.xaml"
                this.logOutButton.MouseEnter += new System.Windows.Input.MouseEventHandler(this.Button_MouseEnter);

            #line default
            #line hidden

            #line 366 "..\..\MainWindow.xaml"
                this.logOutButton.MouseLeave += new System.Windows.Input.MouseEventHandler(this.Button_MouseLeave);

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

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

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

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

            case 5:
                this.rowsCountStackPanel = ((System.Windows.Controls.StackPanel)(target));
                return;

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

            case 7:

            #line 169 "..\..\..\Views\MainWindow.xaml"
                ((System.Windows.Controls.Viewbox)(target)).PreviewMouseLeftButtonDown += new System.Windows.Input.MouseButtonEventHandler(this.operDbUse_PreviewMouseLeftButtonDown);

            #line default
            #line hidden
                return;

            case 8:
                this.IidkViewBox = ((System.Windows.Controls.Viewbox)(target));
                return;

            case 9:
                this.iidkDisconnected = ((System.Windows.Controls.Primitives.Popup)(target));
                return;

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

            case 11:

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

            #line default
            #line hidden
                return;

            case 12:
                this.AccessEvents = ((System.Windows.Controls.TabItem)(target));
                return;

            case 13:
                this.PersonsAEF = ((MolserControls.MsComboBox)(target));
                return;

            case 14:
                this.DepartmentsAEF = ((MolserControls.MsTextBox)(target));

            #line 363 "..\..\..\Views\MainWindow.xaml"
                this.DepartmentsAEF.PreviewMouseDown += new System.Windows.Input.MouseButtonEventHandler(this.SelectAllTextBox_PreviewMouseDown);

            #line default
            #line hidden
                return;

            case 15:
                this.StartDateAEF = ((Xceed.Wpf.Toolkit.DateTimePicker)(target));
                return;

            case 16:
                this.EndDateAEQP = ((Xceed.Wpf.Toolkit.DateTimePicker)(target));
                return;

            case 17:

            #line 500 "..\..\..\Views\MainWindow.xaml"
                ((System.Windows.Controls.Primitives.ToggleButton)(target)).Checked += new System.Windows.RoutedEventHandler(this.AeEventsButton_Checked);

            #line default
            #line hidden
                return;

            case 18:

            #line 531 "..\..\..\Views\MainWindow.xaml"
                ((System.Windows.Controls.Primitives.ToggleButton)(target)).Checked += new System.Windows.RoutedEventHandler(this.AeAccessPointsButton_Checked);

            #line default
            #line hidden
                return;

            case 19:
                this.PersonIDTextBox = ((MolserControls.MsTextBox)(target));
                return;

            case 20:
                this.FacilityCodTextBox = ((MolserControls.MsTextBox)(target));
                return;

            case 21:
                this.CardPartParsecTextBox = ((MolserControls.MsTextBox)(target));
                return;

            case 22:
                this.accessEvenetsDataGrid = ((System.Windows.Controls.DataGrid)(target));

            #line 668 "..\..\..\Views\MainWindow.xaml"
                this.accessEvenetsDataGrid.LoadingRow += new System.EventHandler <System.Windows.Controls.DataGridRowEventArgs>(this.dataGrid_LoadingRow);

            #line default
            #line hidden

            #line 674 "..\..\..\Views\MainWindow.xaml"
                this.accessEvenetsDataGrid.TargetUpdated += new System.EventHandler <System.Windows.Data.DataTransferEventArgs>(this.DataGrid_TargetUpdated);

            #line default
            #line hidden
                return;

            case 23:
                this.Persons = ((System.Windows.Controls.TabItem)(target));
                return;

            case 24:
                this.PersonPF = ((MolserControls.MsTextBox)(target));

            #line 929 "..\..\..\Views\MainWindow.xaml"
                this.PersonPF.PreviewMouseDown += new System.Windows.Input.MouseButtonEventHandler(this.SelectAllTextBox_PreviewMouseDown);

            #line default
            #line hidden
                return;

            case 25:
                this.DepartmentsPF = ((MolserControls.MsTextBox)(target));

            #line 972 "..\..\..\Views\MainWindow.xaml"
                this.DepartmentsPF.PreviewMouseDown += new System.Windows.Input.MouseButtonEventHandler(this.SelectAllTextBox_PreviewMouseDown);

            #line default
            #line hidden
                return;

            case 26:
                this.PersonsPersonIDTextBox = ((MolserControls.MsTextBox)(target));
                return;

            case 27:
                this.PersonsFacilityCodTextBox = ((MolserControls.MsTextBox)(target));
                return;

            case 28:
                this.PersonsCardPartParsecTextBox = ((MolserControls.MsTextBox)(target));
                return;

            case 29:
                this.cbDepartmentFilter = ((MolserControls.MsComboBox)(target));

            #line 1117 "..\..\..\Views\MainWindow.xaml"
                this.cbDepartmentFilter.SelectionChanged += new System.Windows.Controls.SelectionChangedEventHandler(this.cbDepartmentFilter_SelectionChanged);

            #line default
            #line hidden

            #line 1118 "..\..\..\Views\MainWindow.xaml"
                this.cbDepartmentFilter.TargetUpdated += new System.EventHandler <System.Windows.Data.DataTransferEventArgs>(this.cbDepartmentFilter_TargetUpdated);

            #line default
            #line hidden
                return;

            case 30:
                this.personsDataGrid = ((System.Windows.Controls.DataGrid)(target));

            #line 1133 "..\..\..\Views\MainWindow.xaml"
                this.personsDataGrid.LoadingRow += new System.EventHandler <System.Windows.Controls.DataGridRowEventArgs>(this.personsDataGrid_LoadingRow);

            #line default
            #line hidden

            #line 1138 "..\..\..\Views\MainWindow.xaml"
                this.personsDataGrid.TargetUpdated += new System.EventHandler <System.Windows.Data.DataTransferEventArgs>(this.DataGrid_TargetUpdated);

            #line default
            #line hidden
                return;

            case 31:
                this.AccessPoints = ((System.Windows.Controls.TabItem)(target));
                return;

            case 32:
                this.AccessPointName = ((MolserControls.MsTextBox)(target));

            #line 1311 "..\..\..\Views\MainWindow.xaml"
                this.AccessPointName.PreviewMouseDown += new System.Windows.Input.MouseButtonEventHandler(this.SelectAllTextBox_PreviewMouseDown);

            #line default
            #line hidden
                return;

            case 33:
                this.accessPointsDataGrid = ((System.Windows.Controls.DataGrid)(target));

            #line 1405 "..\..\..\Views\MainWindow.xaml"
                this.accessPointsDataGrid.LoadingRow += new System.EventHandler <System.Windows.Controls.DataGridRowEventArgs>(this.dataGrid_LoadingRow);

            #line default
            #line hidden

            #line 1413 "..\..\..\Views\MainWindow.xaml"
                this.accessPointsDataGrid.TargetUpdated += new System.EventHandler <System.Windows.Data.DataTransferEventArgs>(this.accessPointsDataGrid_TargetUpdated);

            #line default
            #line hidden
                return;

            case 34:
                this.Levels = ((System.Windows.Controls.TabItem)(target));
                return;

            case 35:
                this.LevelName = ((MolserControls.MsTextBox)(target));

            #line 1532 "..\..\..\Views\MainWindow.xaml"
                this.LevelName.PreviewMouseDown += new System.Windows.Input.MouseButtonEventHandler(this.SelectAllTextBox_PreviewMouseDown);

            #line default
            #line hidden
                return;

            case 36:
                this.levelsDataGrid = ((System.Windows.Controls.DataGrid)(target));

            #line 1632 "..\..\..\Views\MainWindow.xaml"
                this.levelsDataGrid.LoadingRow += new System.EventHandler <System.Windows.Controls.DataGridRowEventArgs>(this.levelsDataGrid_LoadingRow);

            #line default
            #line hidden

            #line 1640 "..\..\..\Views\MainWindow.xaml"
                this.levelsDataGrid.TargetUpdated += new System.EventHandler <System.Windows.Data.DataTransferEventArgs>(this.levelsDataGrid_TargetUpdated);

            #line default
            #line hidden
                return;

            case 37:
                this.Notifications = ((System.Windows.Controls.TabItem)(target));
                return;

            case 38:
                this.alarmIndicator = ((System.Windows.Shapes.Ellipse)(target));
                return;

            case 39:
                this.alarmIndicator2 = ((System.Windows.Controls.Viewbox)(target));
                return;

            case 40:
                this.alarmIndicator3 = ((System.Windows.Controls.Viewbox)(target));
                return;

            case 41:
                this.notificationsDataGrid = ((System.Windows.Controls.DataGrid)(target));

            #line 1879 "..\..\..\Views\MainWindow.xaml"
                this.notificationsDataGrid.LoadingRow += new System.EventHandler <System.Windows.Controls.DataGridRowEventArgs>(this.dataGrid_LoadingRow);

            #line default
            #line hidden

            #line 1887 "..\..\..\Views\MainWindow.xaml"
                this.notificationsDataGrid.TargetUpdated += new System.EventHandler <System.Windows.Data.DataTransferEventArgs>(this.notificationsDataGrid_TargetUpdated);

            #line default
            #line hidden
                return;

            case 43:
                this.taskBarItemInfo = ((System.Windows.Shell.TaskbarItemInfo)(target));
                return;
            }
            this._contentLoaded = true;
        }
        void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target)
        {
            switch (connectionId)
            {
            case 1:

            #line 9 "..\..\MainWindow.xaml"
                ((KinectSetupDev.MainWindow)(target)).Loaded += new System.Windows.RoutedEventHandler(this.MainWindow_Loaded);

            #line default
            #line hidden

            #line 10 "..\..\MainWindow.xaml"
                ((KinectSetupDev.MainWindow)(target)).Closing += new System.ComponentModel.CancelEventHandler(this.MainWindow_Closing);

            #line default
            #line hidden
                return;

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

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

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

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

            #line default
            #line hidden
                return;

            case 5:
                this.humanViewBox = ((System.Windows.Controls.Viewbox)(target));
                return;

            case 6:
                this.depthViewBox = ((System.Windows.Controls.Viewbox)(target));
                return;

            case 7:
                this.skeletonViewBox = ((System.Windows.Controls.Viewbox)(target));
                return;

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

            case 9:

            #line 27 "..\..\MainWindow.xaml"
                ((System.Windows.Controls.ComboBoxItem)(target)).Selected += new System.Windows.RoutedEventHandler(this.ComboBoxItem_Selected_Left);

            #line default
            #line hidden
                return;

            case 10:

            #line 28 "..\..\MainWindow.xaml"
                ((System.Windows.Controls.ComboBoxItem)(target)).Selected += new System.Windows.RoutedEventHandler(this.ComboBoxItem_Selected_Right);

            #line default
            #line hidden
                return;

            case 11:

            #line 29 "..\..\MainWindow.xaml"
                ((System.Windows.Controls.ComboBoxItem)(target)).Selected += new System.Windows.RoutedEventHandler(this.ComboBoxItem_Selected_Both);

            #line default
            #line hidden
                return;

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

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

            #line default
            #line hidden
                return;

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

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

            #line default
            #line hidden
                return;

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

            case 15:
                this.colorOrDepthCombobox = ((System.Windows.Controls.ComboBox)(target));
                return;

            case 16:

            #line 37 "..\..\MainWindow.xaml"
                ((System.Windows.Controls.ComboBoxItem)(target)).Selected += new System.Windows.RoutedEventHandler(this.ComboBoxItem_Selected_Color);

            #line default
            #line hidden
                return;

            case 17:

            #line 38 "..\..\MainWindow.xaml"
                ((System.Windows.Controls.ComboBoxItem)(target)).Selected += new System.Windows.RoutedEventHandler(this.ComboBoxItem_Selected_Depth);

            #line default
            #line hidden
                return;

            case 18:
                this.recordingSign = ((System.Windows.Shapes.Ellipse)(target));
                return;

            case 19:
                this.movieGrid = ((System.Windows.Controls.Grid)(target));
                return;

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

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

            #line default
            #line hidden
                return;

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

            #line 44 "..\..\MainWindow.xaml"
                this.uploadAvi1_Button.Click += new System.Windows.RoutedEventHandler(this.uploadAvi1_Click);

            #line default
            #line hidden
                return;

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

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

            #line default
            #line hidden
                return;

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

            #line 48 "..\..\MainWindow.xaml"
                this.startKosciec2.Click += new System.Windows.RoutedEventHandler(this.startKosciec2_Click);

            #line default
            #line hidden
                return;

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

            #line 51 "..\..\MainWindow.xaml"
                this.startKosciec1.Click += new System.Windows.RoutedEventHandler(this.startKosciec1_Click);

            #line default
            #line hidden
                return;

            case 25:
                this.kosciecVideoAvi1 = ((System.Windows.Controls.MediaElement)(target));
                return;

            case 26:
                this.kosciecVideoAvi2 = ((System.Windows.Controls.MediaElement)(target));
                return;

            case 27:
                this.labelKosciec1 = ((System.Windows.Controls.Label)(target));
                return;

            case 28:
                this.labelKosciec2 = ((System.Windows.Controls.Label)(target));
                return;

            case 29:
                this.pauseKosciec1 = ((System.Windows.Controls.Button)(target));

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

            #line default
            #line hidden
                return;

            case 30:
                this.pauseKosciec2 = ((System.Windows.Controls.Button)(target));

            #line 61 "..\..\MainWindow.xaml"
                this.pauseKosciec2.Click += new System.Windows.RoutedEventHandler(this.pauseKosciec2_Click);

            #line default
            #line hidden
                return;

            case 31:
                this.pauseAll = ((System.Windows.Controls.Button)(target));

            #line 64 "..\..\MainWindow.xaml"
                this.pauseAll.Click += new System.Windows.RoutedEventHandler(this.pauseAll_Click);

            #line default
            #line hidden
                return;

            case 32:
                this.stopKosciec1 = ((System.Windows.Controls.Button)(target));

            #line 67 "..\..\MainWindow.xaml"
                this.stopKosciec1.Click += new System.Windows.RoutedEventHandler(this.stopKosciec1_Click);

            #line default
            #line hidden
                return;

            case 33:
                this.stopKosciec2 = ((System.Windows.Controls.Button)(target));

            #line 70 "..\..\MainWindow.xaml"
                this.stopKosciec2.Click += new System.Windows.RoutedEventHandler(this.stopKosciec2_Click);

            #line default
            #line hidden
                return;

            case 34:
                this.stopAll = ((System.Windows.Controls.Button)(target));

            #line 73 "..\..\MainWindow.xaml"
                this.stopAll.Click += new System.Windows.RoutedEventHandler(this.stopAll_Click);

            #line default
            #line hidden
                return;

            case 35:
                this.uploadSkeleton1_Button = ((System.Windows.Controls.Button)(target));

            #line 76 "..\..\MainWindow.xaml"
                this.uploadSkeleton1_Button.Click += new System.Windows.RoutedEventHandler(this.uploadSkeleton1_Click);

            #line default
            #line hidden
                return;

            case 36:
                this.kosciecVideoKosciec1 = ((System.Windows.Controls.Image)(target));
                return;

            case 37:
                this.kosciecVideoKosciec2 = ((System.Windows.Controls.Image)(target));
                return;

            case 38:
                this.readFakeSkeleton = ((System.Windows.Controls.Button)(target));

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

            #line default
            #line hidden
                return;

            case 39:
                this.speedMovie1 = ((System.Windows.Controls.TextBox)(target));

            #line 80 "..\..\MainWindow.xaml"
                this.speedMovie1.LostFocus += new System.Windows.RoutedEventHandler(this.speedKosciec1_TextChanged);

            #line default
            #line hidden
                return;

            case 40:
                this.speedLabel1 = ((System.Windows.Controls.Label)(target));
                return;

            case 41:
                this.speedMovie2 = ((System.Windows.Controls.TextBox)(target));

            #line 82 "..\..\MainWindow.xaml"
                this.speedMovie2.LostFocus += new System.Windows.RoutedEventHandler(this.speedKosciec2_TextChanged);

            #line default
            #line hidden
                return;

            case 42:
                this.speedLabel2 = ((System.Windows.Controls.Label)(target));
                return;

            case 43:
                this.uploadAvi2_Button = ((System.Windows.Controls.Button)(target));

            #line 84 "..\..\MainWindow.xaml"
                this.uploadAvi2_Button.Click += new System.Windows.RoutedEventHandler(this.uploadAvi2_Click);

            #line default
            #line hidden
                return;

            case 44:
                this.uploadSkeleton2_Button = ((System.Windows.Controls.Button)(target));

            #line 85 "..\..\MainWindow.xaml"
                this.uploadSkeleton2_Button.Click += new System.Windows.RoutedEventHandler(this.uploadSkeleton2_Click);

            #line default
            #line hidden
                return;

            case 45:
                this.framesKosciec2 = ((System.Windows.Controls.Label)(target));
                return;

            case 46:
                this.framesKosciec1 = ((System.Windows.Controls.Label)(target));
                return;

            case 47:
                this.labelOfFrame2 = ((System.Windows.Controls.Label)(target));
                return;

            case 48:
                this.labelOfFrame1 = ((System.Windows.Controls.Label)(target));
                return;

            case 49:
                this.sliderKosciec1 = ((System.Windows.Controls.Slider)(target));

            #line 90 "..\..\MainWindow.xaml"
                this.sliderKosciec1.ValueChanged += new System.Windows.RoutedPropertyChangedEventHandler <double>(this.sliderKosciec1_ValueChanged);

            #line default
            #line hidden
                return;

            case 50:
                this.sliderKosciec2 = ((System.Windows.Controls.Slider)(target));

            #line 91 "..\..\MainWindow.xaml"
                this.sliderKosciec2.ValueChanged += new System.Windows.RoutedPropertyChangedEventHandler <double>(this.sliderKosciec2_ValueChanged);

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

            case 2:
                this.Background = ((System.Windows.Shapes.Rectangle)(target));
                return;

            case 3:
                this.Top = ((System.Windows.Shapes.Rectangle)(target));
                return;

            case 4:
                this.TopBottom = ((System.Windows.Shapes.Rectangle)(target));
                return;

            case 5:
                this.Title1 = ((System.Windows.Controls.Grid)(target));
                return;

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

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

            case 8:
                this.Hybrids = ((System.Windows.Controls.Viewbox)(target));
                return;

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

            case 10:
                this.PanelShadow = ((System.Windows.Shapes.Rectangle)(target));
                return;

            case 11:
                this.Panel = ((System.Windows.Shapes.Rectangle)(target));
                return;

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

            #line 21 "..\..\HybridsWindow.xaml"
                this.ChooseHybrids.Click += new System.Windows.RoutedEventHandler(this.ChooseHybrids_Click);

            #line default
            #line hidden
                return;

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

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

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

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

            case 17:
                this.Price_Copy = ((System.Windows.Controls.Grid)(target));
                return;

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

            case 19:
                this.TitleShadow3 = ((System.Windows.Controls.TextBlock)(target));
                return;

            case 20:
                this.Trucks = ((System.Windows.Controls.Viewbox)(target));
                return;

            case 21:
                this.Trucks1 = ((System.Windows.Controls.Grid)(target));
                return;

            case 22:
                this.PanelShadow1 = ((System.Windows.Shapes.Rectangle)(target));
                return;

            case 23:
                this.Panel1 = ((System.Windows.Shapes.Rectangle)(target));
                return;

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

            #line 38 "..\..\HybridsWindow.xaml"
                this.ChooseTrucks.Click += new System.Windows.RoutedEventHandler(this.ChooseTrucks_Click);

            #line default
            #line hidden
                return;

            case 25:
                this.SubTitle1 = ((System.Windows.Controls.Grid)(target));
                return;

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

            case 27:
                this.TitleShadow1 = ((System.Windows.Controls.TextBlock)(target));
                return;

            case 28:
                this.CarPicture1 = ((System.Windows.Controls.Image)(target));
                return;

            case 29:
                this.Price_Copy1 = ((System.Windows.Controls.Grid)(target));
                return;

            case 30:
                this.TitleTop4 = ((System.Windows.Controls.TextBlock)(target));
                return;

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

            case 32:
                this.Crossovers = ((System.Windows.Controls.Viewbox)(target));
                return;

            case 33:
                this.Crossovers1 = ((System.Windows.Controls.Grid)(target));
                return;

            case 34:
                this.PanelShadow2 = ((System.Windows.Shapes.Rectangle)(target));
                return;

            case 35:
                this.Panel2 = ((System.Windows.Shapes.Rectangle)(target));
                return;

            case 36:
                this.ChooseCrossovers = ((System.Windows.Controls.Button)(target));

            #line 55 "..\..\HybridsWindow.xaml"
                this.ChooseCrossovers.Click += new System.Windows.RoutedEventHandler(this.ChooseCrossovers_Click);

            #line default
            #line hidden
                return;

            case 37:
                this.SubTitle2 = ((System.Windows.Controls.Grid)(target));
                return;

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

            case 39:
                this.TitleShadow2 = ((System.Windows.Controls.TextBlock)(target));
                return;

            case 40:
                this.CarPicture2 = ((System.Windows.Controls.Image)(target));
                return;

            case 41:
                this.Price_Copy2 = ((System.Windows.Controls.Grid)(target));
                return;

            case 42:
                this.TitleTop5 = ((System.Windows.Controls.TextBlock)(target));
                return;

            case 43:
                this.TitleShadow5 = ((System.Windows.Controls.TextBlock)(target));
                return;
            }
            this._contentLoaded = true;
        }
Beispiel #55
0
        void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target)
        {
            switch (connectionId)
            {
            case 1:
                this.pageNhanSu = ((System.Windows.Controls.Grid)(target));

            #line 10 "..\..\tjin_NHANSU.xaml"
                this.pageNhanSu.Loaded += new System.Windows.RoutedEventHandler(this.pageNhanSu_Loaded);

            #line default
            #line hidden
                return;

            case 2:
                this.vbLable = ((System.Windows.Controls.Viewbox)(target));
                return;

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

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

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

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

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

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

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

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

            case 11:
                this.vbTXT = ((System.Windows.Controls.Viewbox)(target));
                return;

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

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

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

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

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

            case 17:
                this.txtUser = ((System.Windows.Controls.TextBox)(target));
                return;

            case 18:
                this.txtPass1 = ((System.Windows.Controls.PasswordBox)(target));
                return;

            case 19:
                this.txtPass2 = ((System.Windows.Controls.PasswordBox)(target));
                return;

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

            #line 43 "..\..\tjin_NHANSU.xaml"
                this.btnSave.Click += new System.Windows.RoutedEventHandler(this.btnSave_Click);

            #line default
            #line hidden
                return;

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

            #line 44 "..\..\tjin_NHANSU.xaml"
                this.btnDelete.Click += new System.Windows.RoutedEventHandler(this.btnDelete_Click);

            #line default
            #line hidden
                return;

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

            #line 45 "..\..\tjin_NHANSU.xaml"
                this.btnThemMoi.Click += new System.Windows.RoutedEventHandler(this.btnThemMoi_Click);

            #line default
            #line hidden
                return;

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

            #line 47 "..\..\tjin_NHANSU.xaml"
                this.btnSearch.Click += new System.Windows.RoutedEventHandler(this.btnSearch_Click);

            #line default
            #line hidden
                return;

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

            #line 48 "..\..\tjin_NHANSU.xaml"
                this.txtSearch.GotFocus += new System.Windows.RoutedEventHandler(this.Search_GotFocus);

            #line default
            #line hidden
                return;
            }
            this._contentLoaded = true;
        }
Beispiel #56
0
 public void InitializeComponent()
 {
     if (_contentLoaded)
     {
         return;
     }
     _contentLoaded = true;
     System.Windows.Application.LoadComponent(this, new System.Uri("/Galatee.Silverlight;component/Devis/UcVerification.xaml", System.UriKind.Relative));
     this.LayoutRoot              = ((System.Windows.Controls.Grid)(this.FindName("LayoutRoot")));
     this.CancelButton            = ((System.Windows.Controls.Button)(this.FindName("CancelButton")));
     this.tabControl_Consultation = ((System.Windows.Controls.TabControl)(this.FindName("tabControl_Consultation")));
     this.tabItemDevis            = ((System.Windows.Controls.TabItem)(this.FindName("tabItemDevis")));
     this.Gbo_InformationDevis    = ((SilverlightContrib.Controls.GroupBox)(this.FindName("Gbo_InformationDevis")));
     this.Txt_NumeroDevis         = ((System.Windows.Controls.TextBox)(this.FindName("Txt_NumeroDevis")));
     this.lbl_Devis                   = ((System.Windows.Controls.Label)(this.FindName("lbl_Devis")));
     this.Txt_Ordre                   = ((System.Windows.Controls.TextBox)(this.FindName("Txt_Ordre")));
     this.lbl_Site                    = ((System.Windows.Controls.Label)(this.FindName("lbl_Site")));
     this.Txt_LibelleSite             = ((System.Windows.Controls.TextBox)(this.FindName("Txt_LibelleSite")));
     this.lbl_Centre                  = ((System.Windows.Controls.Label)(this.FindName("lbl_Centre")));
     this.Txt_LibelleCentre           = ((System.Windows.Controls.TextBox)(this.FindName("Txt_LibelleCentre")));
     this.Txt_LibelleProduit          = ((System.Windows.Controls.TextBox)(this.FindName("Txt_LibelleProduit")));
     this.lbl_Produit                 = ((System.Windows.Controls.Label)(this.FindName("lbl_Produit")));
     this.Txt_LibelleTypeDevis        = ((System.Windows.Controls.TextBox)(this.FindName("Txt_LibelleTypeDevis")));
     this.Txt_EtapeCourante           = ((System.Windows.Controls.TextBox)(this.FindName("Txt_EtapeCourante")));
     this.Txt_EtapeSuivante           = ((System.Windows.Controls.TextBox)(this.FindName("Txt_EtapeSuivante")));
     this.lbl_TypeDevis               = ((System.Windows.Controls.Label)(this.FindName("lbl_TypeDevis")));
     this.lbl_EtapeEnCours            = ((System.Windows.Controls.Label)(this.FindName("lbl_EtapeEnCours")));
     this.lbl_EtapeSuivante           = ((System.Windows.Controls.Label)(this.FindName("lbl_EtapeSuivante")));
     this.Gbo_PieceJointe             = ((SilverlightContrib.Controls.GroupBox)(this.FindName("Gbo_PieceJointe")));
     this.Chk_PasDeFacture            = ((System.Windows.Controls.CheckBox)(this.FindName("Chk_PasDeFacture")));
     this.cbo_typedoc_Copy            = ((System.Windows.Controls.ComboBox)(this.FindName("cbo_typedoc_Copy")));
     this.Txt_Annotation              = ((System.Windows.Controls.TextBox)(this.FindName("Txt_Annotation")));
     this.dgListePiece                = ((System.Windows.Controls.DataGrid)(this.FindName("dgListePiece")));
     this.cbo_typedoc                 = ((System.Windows.Controls.ComboBox)(this.FindName("cbo_typedoc")));
     this.lbl_Produit_Copy            = ((System.Windows.Controls.Label)(this.FindName("lbl_Produit_Copy")));
     this.lbl_Client                  = ((System.Windows.Controls.Label)(this.FindName("lbl_Client")));
     this.Txt_Client                  = ((System.Windows.Controls.TextBox)(this.FindName("Txt_Client")));
     this.tabItemDemandeur            = ((System.Windows.Controls.TabItem)(this.FindName("tabItemDemandeur")));
     this.Gbo_InformationDemandeDevis = ((SilverlightContrib.Controls.GroupBox)(this.FindName("Gbo_InformationDemandeDevis")));
     this.lbl_Nom                      = ((System.Windows.Controls.Label)(this.FindName("lbl_Nom")));
     this.Txt_NomClient                = ((System.Windows.Controls.TextBox)(this.FindName("Txt_NomClient")));
     this.lab_Tournee                  = ((System.Windows.Controls.Label)(this.FindName("lab_Tournee")));
     this.lbl_CategorieClient          = ((System.Windows.Controls.Label)(this.FindName("lbl_CategorieClient")));
     this.lbl_Telephone                = ((System.Windows.Controls.Label)(this.FindName("lbl_Telephone")));
     this.txt_Telephone                = ((System.Windows.Controls.TextBox)(this.FindName("txt_Telephone")));
     this.lbl_NumLot                   = ((System.Windows.Controls.Label)(this.FindName("lbl_NumLot")));
     this.txt_NumLot                   = ((System.Windows.Controls.TextBox)(this.FindName("txt_NumLot")));
     this.lbl_Piece                    = ((System.Windows.Controls.Label)(this.FindName("lbl_Piece")));
     this.lbl_Commune                  = ((System.Windows.Controls.Label)(this.FindName("lbl_Commune")));
     this.lbl_Quartier                 = ((System.Windows.Controls.Label)(this.FindName("lbl_Quartier")));
     this.txt_Quartier                 = ((System.Windows.Controls.TextBox)(this.FindName("txt_Quartier")));
     this.lbl_Rue                      = ((System.Windows.Controls.Label)(this.FindName("lbl_Rue")));
     this.txt_NumRue                   = ((System.Windows.Controls.TextBox)(this.FindName("txt_NumRue")));
     this.lbl_NumPiece                 = ((System.Windows.Controls.Label)(this.FindName("lbl_NumPiece")));
     this.txtPropriete                 = ((System.Windows.Controls.TextBox)(this.FindName("txtPropriete")));
     this.lbl_Adresse                  = ((System.Windows.Controls.Label)(this.FindName("lbl_Adresse")));
     this.txtAdresse                   = ((System.Windows.Controls.TextBox)(this.FindName("txtAdresse")));
     this.lbl_Proprio                  = ((System.Windows.Controls.Label)(this.FindName("lbl_Proprio")));
     this.txtNumeroPiece               = ((System.Windows.Controls.TextBox)(this.FindName("txtNumeroPiece")));
     this.Txt_LibelleCommune           = ((System.Windows.Controls.TextBox)(this.FindName("Txt_LibelleCommune")));
     this.Txt_LibelleQuartier          = ((System.Windows.Controls.TextBox)(this.FindName("Txt_LibelleQuartier")));
     this.Txt_Porte                    = ((System.Windows.Controls.TextBox)(this.FindName("Txt_Porte")));
     this.Txt_LibelleCategorie         = ((System.Windows.Controls.TextBox)(this.FindName("Txt_LibelleCategorie")));
     this.Txt_TypePiece                = ((System.Windows.Controls.TextBox)(this.FindName("Txt_TypePiece")));
     this.Txt_LibelleTournee           = ((System.Windows.Controls.TextBox)(this.FindName("Txt_LibelleTournee")));
     this.lbl_Rue_Copy                 = ((System.Windows.Controls.Label)(this.FindName("lbl_Rue_Copy")));
     this.tabItemAbonnement            = ((System.Windows.Controls.TabItem)(this.FindName("tabItemAbonnement")));
     this.Gbo_InformationAbonnement    = ((SilverlightContrib.Controls.GroupBox)(this.FindName("Gbo_InformationAbonnement")));
     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_CodeRistoune             = ((System.Windows.Controls.TextBox)(this.FindName("Txt_CodeRistoune")));
     this.lbl_Ristourne                = ((System.Windows.Controls.Label)(this.FindName("lbl_Ristourne")));
     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.lbl_MoisReleve               = ((System.Windows.Controls.Label)(this.FindName("lbl_MoisReleve")));
     this.Txt_LibelleForfait           = ((System.Windows.Controls.TextBox)(this.FindName("Txt_LibelleForfait")));
     this.label1 = ((System.Windows.Controls.Label)(this.FindName("label1")));
     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.textBox7                 = ((System.Windows.Controls.TextBox)(this.FindName("textBox7")));
     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.txt_DebutExoneration     = ((System.Windows.Controls.TextBox)(this.FindName("txt_DebutExoneration")));
     this.txt_FinExoneration       = ((System.Windows.Controls.TextBox)(this.FindName("txt_FinExoneration")));
     this.lbl_MoisFact_Copy        = ((System.Windows.Controls.Label)(this.FindName("lbl_MoisFact_Copy")));
     this.tabItemAppareils         = ((System.Windows.Controls.TabItem)(this.FindName("tabItemAppareils")));
     this.dtgAppareils             = ((System.Windows.Controls.DataGrid)(this.FindName("dtgAppareils")));
     this.tabItemFournitures       = ((System.Windows.Controls.TabItem)(this.FindName("tabItemFournitures")));
     this.dataGridForniture        = ((System.Windows.Controls.DataGrid)(this.FindName("dataGridForniture")));
     this.lbl_TotalHT              = ((System.Windows.Controls.Label)(this.FindName("lbl_TotalHT")));
     this.Txt_TotalHt              = ((System.Windows.Controls.TextBox)(this.FindName("Txt_TotalHt")));
     this.lbl_TotalTTC             = ((System.Windows.Controls.Label)(this.FindName("lbl_TotalTTC")));
     this.Txt_TotalTtc             = ((System.Windows.Controls.TextBox)(this.FindName("Txt_TotalTtc")));
     this.lbl_TotalTVA             = ((System.Windows.Controls.Label)(this.FindName("lbl_TotalTVA")));
     this.Txt_TotalTva             = ((System.Windows.Controls.TextBox)(this.FindName("Txt_TotalTva")));
     this.tabItemMetre             = ((System.Windows.Controls.TabItem)(this.FindName("tabItemMetre")));
     this.lDistance                = ((System.Windows.Controls.Label)(this.FindName("lDistance")));
     this.label3 = ((System.Windows.Controls.Label)(this.FindName("label3")));
     this.label5 = ((System.Windows.Controls.Label)(this.FindName("label5")));
     this.label7 = ((System.Windows.Controls.Label)(this.FindName("label7")));
     this.Txt_BranchementProche = ((System.Windows.Controls.TextBox)(this.FindName("Txt_BranchementProche")));
     this.Txt_Distance          = ((System.Windows.Controls.TextBox)(this.FindName("Txt_Distance")));
     this.label8                         = ((System.Windows.Controls.Label)(this.FindName("label8")));
     this.TxtOrdreTournee                = ((System.Windows.Controls.TextBox)(this.FindName("TxtOrdreTournee")));
     this.Txt_Typedecompteur             = ((System.Windows.Controls.TextBox)(this.FindName("Txt_Typedecompteur")));
     this.label3_Copy                    = ((System.Windows.Controls.Label)(this.FindName("label3_Copy")));
     this.Txt_Tournee                    = ((System.Windows.Controls.TextBox)(this.FindName("Txt_Tournee")));
     this.label8_Puissance               = ((System.Windows.Controls.Label)(this.FindName("label8_Puissance")));
     this.TxtPuissance                   = ((System.Windows.Controls.TextBox)(this.FindName("TxtPuissance")));
     this.lbl_diametre                   = ((System.Windows.Controls.Label)(this.FindName("lbl_diametre")));
     this.Txt_LibelleTypeBrt             = ((System.Windows.Controls.TextBox)(this.FindName("Txt_LibelleTypeBrt")));
     this.lbl_QuartierDuPoste            = ((System.Windows.Controls.Label)(this.FindName("lbl_QuartierDuPoste")));
     this.Txt_LibelleQuartierPoste       = ((System.Windows.Controls.TextBox)(this.FindName("Txt_LibelleQuartierPoste")));
     this.lbl_Depart                     = ((System.Windows.Controls.Label)(this.FindName("lbl_Depart")));
     this.Txt_LibelleDepartHTA           = ((System.Windows.Controls.TextBox)(this.FindName("Txt_LibelleDepartHTA")));
     this.Txt_AdresseElectrique          = ((System.Windows.Controls.TextBox)(this.FindName("Txt_AdresseElectrique")));
     this.lbl_Codification               = ((System.Windows.Controls.Label)(this.FindName("lbl_Codification")));
     this.TxtLongitude                   = ((System.Windows.Controls.TextBox)(this.FindName("TxtLongitude")));
     this.lbl_longitude                  = ((System.Windows.Controls.Label)(this.FindName("lbl_longitude")));
     this.TxtLatitude                    = ((System.Windows.Controls.TextBox)(this.FindName("TxtLatitude")));
     this.lbl_latitude                   = ((System.Windows.Controls.Label)(this.FindName("lbl_latitude")));
     this.lbl_Depart_Copy                = ((System.Windows.Controls.Label)(this.FindName("lbl_Depart_Copy")));
     this.Txt_LibellePosteSource         = ((System.Windows.Controls.TextBox)(this.FindName("Txt_LibellePosteSource")));
     this.lbl_QuartierDuPoste_Copy       = ((System.Windows.Controls.Label)(this.FindName("lbl_QuartierDuPoste_Copy")));
     this.Txt_LibellePosteTransformateur = ((System.Windows.Controls.TextBox)(this.FindName("Txt_LibellePosteTransformateur")));
     this.lbl_QuartierDuPoste_Copy1      = ((System.Windows.Controls.Label)(this.FindName("lbl_QuartierDuPoste_Copy1")));
     this.Txt_LibelleDepartBt            = ((System.Windows.Controls.TextBox)(this.FindName("Txt_LibelleDepartBt")));
     this.Txt_NeoudFinal                 = ((System.Windows.Controls.TextBox)(this.FindName("Txt_NeoudFinal")));
     this.lbl_NoeudFinal                 = ((System.Windows.Controls.Label)(this.FindName("lbl_NoeudFinal")));
     this.groupBox1                      = ((SilverlightContrib.Controls.GroupBox)(this.FindName("groupBox1")));
     this.dgListeFraixParicipation       = ((System.Windows.Controls.DataGrid)(this.FindName("dgListeFraixParicipation")));
     this.tabItemRejet                   = ((System.Windows.Controls.TabItem)(this.FindName("tabItemRejet")));
     this.dtg_RejetDemande               = ((System.Windows.Controls.DataGrid)(this.FindName("dtg_RejetDemande")));
     this.tabPieceJointe_Copy            = ((System.Windows.Controls.TabItem)(this.FindName("tabPieceJointe_Copy")));
     this.Vwb            = ((System.Windows.Controls.Viewbox)(this.FindName("Vwb")));
     this.btn_transmetre = ((System.Windows.Controls.Button)(this.FindName("btn_transmetre")));
     this.RejeterButton  = ((System.Windows.Controls.Button)(this.FindName("RejeterButton")));
 }
        void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target)
        {
            switch (connectionId)
            {
            case 1:

            #line 8 "..\..\..\Views\CCustomReports.xaml"
                ((BMC.Presentation.CCustomReports)(target)).Loaded += new System.Windows.RoutedEventHandler(this.Window_Loaded);

            #line default
            #line hidden
                return;

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

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

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

            #line 35 "..\..\..\Views\CCustomReports.xaml"
                this.cmbReports.SelectionChanged += new System.Windows.Controls.SelectionChangedEventHandler(this.cmbReports_SelectionChanged);

            #line default
            #line hidden
                return;

            case 5:
                this.VoucherCouponLiabilityReportGrid = ((System.Windows.Controls.Grid)(target));
                return;

            case 6:
                this.vbIssueDate = ((System.Windows.Controls.Viewbox)(target));
                return;

            case 7:
                this.dtpIssueDate_liability = ((Microsoft.Windows.Controls.DatePicker)(target));
                return;

            case 8:
                this.tmpIssueDate_liability = ((AC.AvalonControlsLibrary.Controls.TimePicker)(target));
                return;

            case 9:
                this.cmbDeviceType_liability = ((System.Windows.Controls.ComboBox)(target));
                return;

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

            case 11:
                this.ExpiredVoucherCouponReportGrid = ((System.Windows.Controls.Grid)(target));
                return;

            case 12:
                this.vbFromDate_Expired = ((System.Windows.Controls.Viewbox)(target));
                return;

            case 13:
                this.dtpFromDate_Expired = ((Microsoft.Windows.Controls.DatePicker)(target));
                return;

            case 14:
                this.tmpFromDate_Expired = ((AC.AvalonControlsLibrary.Controls.TimePicker)(target));
                return;

            case 15:
                this.vbToDate_Expired = ((System.Windows.Controls.Viewbox)(target));
                return;

            case 16:
                this.dtpToDate_Expired = ((Microsoft.Windows.Controls.DatePicker)(target));
                return;

            case 17:
                this.tmpToDate_Expired = ((AC.AvalonControlsLibrary.Controls.TimePicker)(target));
                return;

            case 18:
                this.cmbDeviceType_Expired = ((System.Windows.Controls.ComboBox)(target));
                return;

            case 19:
                this.RedeemedTicketByDeviceReportGrid = ((System.Windows.Controls.Grid)(target));
                return;

            case 20:
                this.vbFromDate = ((System.Windows.Controls.Viewbox)(target));
                return;

            case 21:
                this.dtpFromDate_Redeem = ((Microsoft.Windows.Controls.DatePicker)(target));
                return;

            case 22:
                this.tmpFromDate_Redeem = ((AC.AvalonControlsLibrary.Controls.TimePicker)(target));
                return;

            case 23:
                this.vbToDate = ((System.Windows.Controls.Viewbox)(target));
                return;

            case 24:
                this.dtpToDate_Redeem = ((Microsoft.Windows.Controls.DatePicker)(target));
                return;

            case 25:
                this.tmpToDate_Redeem = ((AC.AvalonControlsLibrary.Controls.TimePicker)(target));
                return;

            case 26:
                this.cmbDeviceType_Redeem = ((System.Windows.Controls.ComboBox)(target));
                return;

            case 27:
                this.ExpenseDetailsReportGrid = ((System.Windows.Controls.Grid)(target));
                return;

            case 28:
                this.vbExpenseDetailReportDate = ((System.Windows.Controls.Viewbox)(target));
                return;

            case 29:
                this.dtpReportDate_ExpenseDetail = ((Microsoft.Windows.Controls.DatePicker)(target));
                return;

            case 30:
                this.cmbExpensePeriod = ((System.Windows.Controls.ComboBox)(target));
                return;

            case 31:
                this.chkIsGamingDay = ((System.Windows.Controls.CheckBox)(target));
                return;

            case 32:
                this.JackpotSlipSummaryReportGrid = ((System.Windows.Controls.Grid)(target));
                return;

            case 33:
                this.vbReportStartDate = ((System.Windows.Controls.Viewbox)(target));
                return;

            case 34:
                this.dtpReportStartDate_JackpotSlipSummary = ((Microsoft.Windows.Controls.DatePicker)(target));
                return;

            case 35:
                this.tpReportStartTime = ((AC.AvalonControlsLibrary.Controls.TimePicker)(target));
                return;

            case 36:
                this.vbReportEndDate = ((System.Windows.Controls.Viewbox)(target));
                return;

            case 37:
                this.dtpReportEndDate_JackpotSlipSummary = ((Microsoft.Windows.Controls.DatePicker)(target));
                return;

            case 38:
                this.tpReportEndTime = ((AC.AvalonControlsLibrary.Controls.TimePicker)(target));
                return;

            case 39:
                this.chkIncludeHandpay = ((System.Windows.Controls.CheckBox)(target));
                return;

            case 40:
                this.chkIncludeJackpot = ((System.Windows.Controls.CheckBox)(target));
                return;

            case 41:
                this.TicketIssuedReportGrid = ((System.Windows.Controls.Grid)(target));
                return;

            case 42:
                this.vbFromDate_Issued = ((System.Windows.Controls.Viewbox)(target));
                return;

            case 43:
                this.dtpFromDate_Issued = ((Microsoft.Windows.Controls.DatePicker)(target));
                return;

            case 44:
                this.tmpFromDate_Issued = ((AC.AvalonControlsLibrary.Controls.TimePicker)(target));
                return;

            case 45:
                this.vbToDate_Issued = ((System.Windows.Controls.Viewbox)(target));
                return;

            case 46:
                this.dtpToDate_Issued = ((Microsoft.Windows.Controls.DatePicker)(target));
                return;

            case 47:
                this.tmpToDate_Issued = ((AC.AvalonControlsLibrary.Controls.TimePicker)(target));
                return;

            case 48:
                this.cmbSlot_Issued = ((System.Windows.Controls.ComboBox)(target));
                return;

            case 49:
                this.cmbVoucherStatus_Issued = ((System.Windows.Controls.ComboBox)(target));
                return;

            case 50:
                this.MeterListReportGrid = ((System.Windows.Controls.Grid)(target));
                return;

            case 51:
                this.cmbAssetNumber = ((System.Windows.Controls.ComboBox)(target));
                return;

            case 52:
                this.ExceptionVoucherDetailReportGrid = ((System.Windows.Controls.Grid)(target));
                return;

            case 53:
                this.vbFromDate_Exception = ((System.Windows.Controls.Viewbox)(target));
                return;

            case 54:
                this.dtpFromDate_Exception = ((Microsoft.Windows.Controls.DatePicker)(target));

            #line 276 "..\..\..\Views\CCustomReports.xaml"
                this.dtpFromDate_Exception.SelectedDateChanged += new System.EventHandler <System.Windows.Controls.SelectionChangedEventArgs>(this.dtpFromDate_Exception_SelectedDateChanged);

            #line default
            #line hidden
                return;

            case 55:
                this.tmpFromDate_Exception = ((AC.AvalonControlsLibrary.Controls.TimePicker)(target));

            #line 278 "..\..\..\Views\CCustomReports.xaml"
                this.tmpFromDate_Exception.SelectedTimeChanged += new AC.AvalonControlsLibrary.Controls.TimeSelectedChangedEventHandler(this.dtpFromDate_Exception_SelectedDateChanged);

            #line default
            #line hidden
                return;

            case 56:
                this.vbToDate_Exception = ((System.Windows.Controls.Viewbox)(target));
                return;

            case 57:
                this.dtpToDate_Exception = ((Microsoft.Windows.Controls.DatePicker)(target));

            #line 281 "..\..\..\Views\CCustomReports.xaml"
                this.dtpToDate_Exception.SelectedDateChanged += new System.EventHandler <System.Windows.Controls.SelectionChangedEventArgs>(this.dtpFromDate_Exception_SelectedDateChanged);

            #line default
            #line hidden
                return;

            case 58:
                this.tmpToDate_Exception = ((AC.AvalonControlsLibrary.Controls.TimePicker)(target));

            #line 283 "..\..\..\Views\CCustomReports.xaml"
                this.tmpToDate_Exception.SelectedTimeChanged += new AC.AvalonControlsLibrary.Controls.TimeSelectedChangedEventHandler(this.dtpFromDate_Exception_SelectedDateChanged);

            #line default
            #line hidden
                return;

            case 59:
                this.chkDropBased = ((System.Windows.Controls.CheckBox)(target));

            #line 284 "..\..\..\Views\CCustomReports.xaml"
                this.chkDropBased.Checked += new System.Windows.RoutedEventHandler(this.chkDropBased_Checked);

            #line default
            #line hidden

            #line 284 "..\..\..\Views\CCustomReports.xaml"
                this.chkDropBased.Unchecked += new System.Windows.RoutedEventHandler(this.chkDropBased_Unchecked);

            #line default
            #line hidden
                return;

            case 60:
                this.cmbBatchNumber = ((System.Windows.Controls.ComboBox)(target));
                return;

            case 61:
                this.CrossPropertyLiabilityTransferSummaryReportGrid = ((System.Windows.Controls.Grid)(target));
                return;

            case 62:
                this.vbFromDate_TSR = ((System.Windows.Controls.Viewbox)(target));
                return;

            case 63:
                this.dtpFromDate_TSR = ((Microsoft.Windows.Controls.DatePicker)(target));
                return;

            case 64:
                this.tmpFromDate_TSR = ((AC.AvalonControlsLibrary.Controls.TimePicker)(target));
                return;

            case 65:
                this.vbToDate_TSR = ((System.Windows.Controls.Viewbox)(target));
                return;

            case 66:
                this.dtpToDate_TSR = ((Microsoft.Windows.Controls.DatePicker)(target));
                return;

            case 67:
                this.tmpToDate_TSR = ((AC.AvalonControlsLibrary.Controls.TimePicker)(target));
                return;

            case 68:
                this.CrossPropertyLiabilityTransferDetailsReportGrid = ((System.Windows.Controls.Grid)(target));
                return;

            case 69:
                this.vbFromDate_TDR = ((System.Windows.Controls.Viewbox)(target));
                return;

            case 70:
                this.dtpFromDate_TDR = ((Microsoft.Windows.Controls.DatePicker)(target));
                return;

            case 71:
                this.tmpFromDate_TDR = ((AC.AvalonControlsLibrary.Controls.TimePicker)(target));
                return;

            case 72:
                this.vbToDate_TDR = ((System.Windows.Controls.Viewbox)(target));
                return;

            case 73:
                this.dtpToDate_TDR = ((Microsoft.Windows.Controls.DatePicker)(target));
                return;

            case 74:
                this.tmpToDate_TDR = ((AC.AvalonControlsLibrary.Controls.TimePicker)(target));
                return;

            case 75:
                this.CrossPropertyTicketAnalysisReportGrid = ((System.Windows.Controls.Grid)(target));
                return;

            case 76:
                this.vbFromDate_TAR = ((System.Windows.Controls.Viewbox)(target));
                return;

            case 77:
                this.dtpFromDate_TAR = ((Microsoft.Windows.Controls.DatePicker)(target));
                return;

            case 78:
                this.tmpFromDate_TAR = ((AC.AvalonControlsLibrary.Controls.TimePicker)(target));
                return;

            case 79:
                this.vbToDate_TAR = ((System.Windows.Controls.Viewbox)(target));
                return;

            case 80:
                this.dtpToDate_TAR = ((Microsoft.Windows.Controls.DatePicker)(target));
                return;

            case 81:
                this.tmpToDate_TAR = ((AC.AvalonControlsLibrary.Controls.TimePicker)(target));
                return;

            case 82:
                this.StackerLevelDetailsReportGrid = ((System.Windows.Controls.Grid)(target));
                return;

            case 83:
                this.cmbStackerLevel = ((System.Windows.Controls.ComboBox)(target));
                return;

            case 84:
                this.AccountingWinLossReportGrid = ((System.Windows.Controls.Grid)(target));
                return;

            case 85:
                this.vbFromDate_AWLR = ((System.Windows.Controls.Viewbox)(target));
                return;

            case 86:
                this.dtpFromDate_AWLR = ((Microsoft.Windows.Controls.DatePicker)(target));
                return;

            case 87:
                this.vbToDate_AWLR = ((System.Windows.Controls.Viewbox)(target));
                return;

            case 88:
                this.dtpToDate_AWLR = ((Microsoft.Windows.Controls.DatePicker)(target));
                return;

            case 89:
                this.cmbZone_AWLR = ((System.Windows.Controls.ComboBox)(target));
                return;

            case 90:
                this.cmbCategory_AWLR = ((System.Windows.Controls.ComboBox)(target));
                return;

            case 91:
                this.chkNonCashable_AWLR = ((System.Windows.Controls.CheckBox)(target));
                return;

            case 92:
                this.buttonGrid = ((System.Windows.Controls.Grid)(target));
                return;

            case 93:
                this.btnOK = ((System.Windows.Controls.Button)(target));

            #line 408 "..\..\..\Views\CCustomReports.xaml"
                this.btnOK.Click += new System.Windows.RoutedEventHandler(this.btnOK_Click);

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

            case 2:
                this.vbox = ((System.Windows.Controls.Viewbox)(target));
                return;

            case 3:
                this.canChat = ((System.Windows.Controls.Canvas)(target));
                return;

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

            case 5:
                this.rtbOutput = ((System.Windows.Controls.RichTextBox)(target));
                return;

            case 6:
                this.lstUsers = ((System.Windows.Controls.ListBox)(target));

            #line 47 "..\..\WChatWindow - Copy.xaml"
                this.lstUsers.SelectionChanged += new System.Windows.Controls.SelectionChangedEventHandler(this.lstUsers_SelectionChanged);

            #line default
            #line hidden
                return;

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

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

            #line 70 "..\..\WChatWindow - Copy.xaml"
                this.btnSettings.PreviewMouseDown += new System.Windows.Input.MouseButtonEventHandler(this.btnSettings_PreviewMouseDown);

            #line default
            #line hidden

            #line 70 "..\..\WChatWindow - Copy.xaml"
                this.btnSettings.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.btnSettings_Click);

            #line default
            #line hidden

            #line 70 "..\..\WChatWindow - Copy.xaml"
                this.btnSettings.MouseLeave += new System.Windows.Input.MouseEventHandler(this.btnSettings_MouseLeave);

            #line default
            #line hidden
                return;

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

            #line 71 "..\..\WChatWindow - Copy.xaml"
                this.lblBtnSettings.PreviewMouseDown += new System.Windows.Input.MouseButtonEventHandler(this.btnSettings_PreviewMouseDown);

            #line default
            #line hidden

            #line 71 "..\..\WChatWindow - Copy.xaml"
                this.lblBtnSettings.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.btnSettings_Click);

            #line default
            #line hidden
                return;

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

            #line 72 "..\..\WChatWindow - Copy.xaml"
                this.lblKeySettings.PreviewMouseDown += new System.Windows.Input.MouseButtonEventHandler(this.btnSettings_PreviewMouseDown);

            #line default
            #line hidden

            #line 72 "..\..\WChatWindow - Copy.xaml"
                this.lblKeySettings.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.btnSettings_Click);

            #line default
            #line hidden
                return;

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

            #line 73 "..\..\WChatWindow - Copy.xaml"
                this.btnQuit.PreviewMouseDown += new System.Windows.Input.MouseButtonEventHandler(this.btnQuit_PreviewMouseDown);

            #line default
            #line hidden

            #line 73 "..\..\WChatWindow - Copy.xaml"
                this.btnQuit.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.btnQuit_Click);

            #line default
            #line hidden
                return;

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

            #line 74 "..\..\WChatWindow - Copy.xaml"
                this.lblBtnQuit.PreviewMouseDown += new System.Windows.Input.MouseButtonEventHandler(this.btnQuit_PreviewMouseDown);

            #line default
            #line hidden

            #line 74 "..\..\WChatWindow - Copy.xaml"
                this.lblBtnQuit.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.btnQuit_Click);

            #line default
            #line hidden
                return;

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

            #line 75 "..\..\WChatWindow - Copy.xaml"
                this.lblKeyQuit.PreviewMouseDown += new System.Windows.Input.MouseButtonEventHandler(this.btnQuit_PreviewMouseDown);

            #line default
            #line hidden

            #line 75 "..\..\WChatWindow - Copy.xaml"
                this.lblKeyQuit.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.btnQuit_Click);

            #line default
            #line hidden
                return;

            case 14:
                this.btnSend = ((System.Windows.Controls.Image)(target));

            #line 76 "..\..\WChatWindow - Copy.xaml"
                this.btnSend.PreviewMouseDown += new System.Windows.Input.MouseButtonEventHandler(this.btnSend_PreviewMouseDown);

            #line default
            #line hidden

            #line 76 "..\..\WChatWindow - Copy.xaml"
                this.btnSend.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.btnSend_Click);

            #line default
            #line hidden
                return;

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

            #line 77 "..\..\WChatWindow - Copy.xaml"
                this.lblBtnSend.PreviewMouseDown += new System.Windows.Input.MouseButtonEventHandler(this.btnSend_PreviewMouseDown);

            #line default
            #line hidden

            #line 77 "..\..\WChatWindow - Copy.xaml"
                this.lblBtnSend.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.btnSend_Click);

            #line default
            #line hidden
                return;

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

            #line 78 "..\..\WChatWindow - Copy.xaml"
                this.lblKeySend.PreviewMouseDown += new System.Windows.Input.MouseButtonEventHandler(this.btnSend_PreviewMouseDown);

            #line default
            #line hidden

            #line 78 "..\..\WChatWindow - Copy.xaml"
                this.lblKeySend.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.btnSend_Click);

            #line default
            #line hidden
                return;

            case 17:
                this.btnWhis = ((System.Windows.Controls.Image)(target));

            #line 79 "..\..\WChatWindow - Copy.xaml"
                this.btnWhis.PreviewMouseDown += new System.Windows.Input.MouseButtonEventHandler(this.btnWhis_PreviewMouseDown);

            #line default
            #line hidden

            #line 79 "..\..\WChatWindow - Copy.xaml"
                this.btnWhis.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.btnWhis_Click);

            #line default
            #line hidden
                return;

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

            #line 80 "..\..\WChatWindow - Copy.xaml"
                this.lblBtnWhis.PreviewMouseDown += new System.Windows.Input.MouseButtonEventHandler(this.btnWhis_PreviewMouseDown);

            #line default
            #line hidden

            #line 80 "..\..\WChatWindow - Copy.xaml"
                this.lblBtnWhis.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.btnWhis_Click);

            #line default
            #line hidden
                return;

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

            #line 81 "..\..\WChatWindow - Copy.xaml"
                this.lblKeyWhis.PreviewMouseDown += new System.Windows.Input.MouseButtonEventHandler(this.btnWhis_PreviewMouseDown);

            #line default
            #line hidden

            #line 81 "..\..\WChatWindow - Copy.xaml"
                this.lblKeyWhis.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.btnWhis_Click);

            #line default
            #line hidden
                return;

            case 20:
                this.btnCreate = ((System.Windows.Controls.Image)(target));
                return;

            case 21:
                this.lblBtnCreate = ((System.Windows.Controls.Label)(target));
                return;

            case 22:
                this.lblKeyCreate = ((System.Windows.Controls.Label)(target));
                return;

            case 23:
                this.btnJoin = ((System.Windows.Controls.Image)(target));
                return;

            case 24:
                this.lblBtnJoin = ((System.Windows.Controls.Label)(target));
                return;

            case 25:
                this.lblKeyJoin = ((System.Windows.Controls.Label)(target));
                return;
            }
            this._contentLoaded = true;
        }
        void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target)
        {
            switch (connectionId)
            {
            case 1:
                this.VB_Main = ((System.Windows.Controls.Viewbox)(target));
                return;

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

            #line 15 "..\..\MainWindow.xaml"
                this.MainWindow_tabController.SelectionChanged += new System.Windows.Controls.SelectionChangedEventHandler(this.OnTabChanged);

            #line default
            #line hidden
                return;

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

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

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

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

            #line 71 "..\..\MainWindow.xaml"
                this.cb_Chapter_Page1.SelectionChanged += new System.Windows.Controls.SelectionChangedEventHandler(this.ChapterChanged);

            #line default
            #line hidden
                return;

            case 7:
                this.txb_ChapterCounter = ((System.Windows.Controls.TextBlock)(target));
                return;

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

            case 9:
                this.cbk_hideText = ((System.Windows.Controls.CheckBox)(target));
                return;

            case 10:
                this.ckb_DescBox = ((System.Windows.Controls.CheckBox)(target));

            #line 81 "..\..\MainWindow.xaml"
                this.ckb_DescBox.Checked += new System.Windows.RoutedEventHandler(this.DescriptionBox_Checked);

            #line default
            #line hidden

            #line 81 "..\..\MainWindow.xaml"
                this.ckb_DescBox.Unchecked += new System.Windows.RoutedEventHandler(this.DescriptionBox_Checked);

            #line default
            #line hidden
                return;

            case 11:
                this.ckb_Randomized = ((System.Windows.Controls.CheckBox)(target));

            #line 84 "..\..\MainWindow.xaml"
                this.ckb_Randomized.Checked += new System.Windows.RoutedEventHandler(this.Randomized_Checked);

            #line default
            #line hidden

            #line 84 "..\..\MainWindow.xaml"
                this.ckb_Randomized.Unchecked += new System.Windows.RoutedEventHandler(this.Randomized_Checked);

            #line default
            #line hidden
                return;

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

            case 13:
                this.rb_TrainScript_Page1 = ((System.Windows.Controls.RadioButton)(target));

            #line 91 "..\..\MainWindow.xaml"
                this.rb_TrainScript_Page1.Checked += new System.Windows.RoutedEventHandler(this.SelectWhatToPractice);

            #line default
            #line hidden
                return;

            case 14:
                this.rb_TrainEngWords_Page1 = ((System.Windows.Controls.RadioButton)(target));

            #line 95 "..\..\MainWindow.xaml"
                this.rb_TrainEngWords_Page1.Checked += new System.Windows.RoutedEventHandler(this.SelectWhatToPractice);

            #line default
            #line hidden
                return;

            case 15:
                this.rb_TrainFonet_Page1 = ((System.Windows.Controls.RadioButton)(target));

            #line 98 "..\..\MainWindow.xaml"
                this.rb_TrainFonet_Page1.Checked += new System.Windows.RoutedEventHandler(this.SelectWhatToPractice);

            #line default
            #line hidden
                return;

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

            case 17:
                this.InputGroup = ((System.Windows.Controls.Grid)(target));
                return;

            case 18:
                this.txt_Answear_Page1 = ((System.Windows.Controls.TextBox)(target));

            #line 122 "..\..\MainWindow.xaml"
                this.txt_Answear_Page1.KeyUp += new System.Windows.Input.KeyEventHandler(this.OnKeyUp);

            #line default
            #line hidden
                return;

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

            #line 132 "..\..\MainWindow.xaml"
                this.btn_Prev_Word.Click += new System.Windows.RoutedEventHandler(this.PrevWord);

            #line default
            #line hidden
                return;

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

            #line 133 "..\..\MainWindow.xaml"
                this.btn_validate.Click += new System.Windows.RoutedEventHandler(this.ValidateAnswear);

            #line default
            #line hidden
                return;

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

            #line 134 "..\..\MainWindow.xaml"
                this.btn_Next_Word.Click += new System.Windows.RoutedEventHandler(this.NextWord);

            #line default
            #line hidden
                return;

            case 22:
                this.txb_Status_Page1 = ((System.Windows.Controls.TextBlock)(target));
                return;

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

            #line 150 "..\..\MainWindow.xaml"
                this.btn_Speaker_Page1.Click += new System.Windows.RoutedEventHandler(this.PlaySound_Clicked);

            #line default
            #line hidden
                return;

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

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

            #line default
            #line hidden
                return;

            case 25:

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

            #line default
            #line hidden
                return;

            case 26:
                this.scrvr_Description_page1 = ((System.Windows.Controls.ScrollViewer)(target));
                return;

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

            case 28:
                this.txb_SpeechResult = ((System.Windows.Controls.TextBlock)(target));
                return;

            case 29:
                this.dg_ContentManagement = ((System.Windows.Controls.DataGrid)(target));

            #line 190 "..\..\MainWindow.xaml"
                this.dg_ContentManagement.LoadingRow += new System.EventHandler <System.Windows.Controls.DataGridRowEventArgs>(this.Dg_ContentManagement_LoadingRow);

            #line default
            #line hidden

            #line 190 "..\..\MainWindow.xaml"
                this.dg_ContentManagement.RowEditEnding += new System.EventHandler <System.Windows.Controls.DataGridRowEditEndingEventArgs>(this.RowEditEnding);

            #line default
            #line hidden

            #line 190 "..\..\MainWindow.xaml"
                this.dg_ContentManagement.KeyUp += new System.Windows.Input.KeyEventHandler(this.DG_ConMan_KeyUp);

            #line default
            #line hidden
                return;

            case 30:
                this.txt_SearchBar = ((System.Windows.Controls.TextBox)(target));

            #line 224 "..\..\MainWindow.xaml"
                this.txt_SearchBar.KeyUp += new System.Windows.Input.KeyEventHandler(this.Search_KeyUp);

            #line default
            #line hidden
                return;

            case 31:
                this.btn_Search = ((System.Windows.Controls.Button)(target));

            #line 225 "..\..\MainWindow.xaml"
                this.btn_Search.Click += new System.Windows.RoutedEventHandler(this.Search_Clicked);

            #line default
            #line hidden
                return;

            case 32:
                this.ckb_EnableSoundPath = ((System.Windows.Controls.CheckBox)(target));
                return;

            case 33:

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

            #line default
            #line hidden
                return;

            case 34:

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

            #line default
            #line hidden
                return;

            case 35:

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

            #line default
            #line hidden
                return;

            case 36:
                this.lbl_TrainWhat_Page2_Copy1 = ((System.Windows.Controls.Label)(target));
                return;

            case 37:
                this.rb_TrainScript_Setting = ((System.Windows.Controls.RadioButton)(target));

            #line 279 "..\..\MainWindow.xaml"
                this.rb_TrainScript_Setting.Checked += new System.Windows.RoutedEventHandler(this.SelectWhatToPractice);

            #line default
            #line hidden
                return;

            case 38:
                this.rb_TrainEngWords_Setting = ((System.Windows.Controls.RadioButton)(target));

            #line 282 "..\..\MainWindow.xaml"
                this.rb_TrainEngWords_Setting.Checked += new System.Windows.RoutedEventHandler(this.SelectWhatToPractice);

            #line default
            #line hidden
                return;

            case 39:
                this.rb_TrainFonet_Setting = ((System.Windows.Controls.RadioButton)(target));

            #line 285 "..\..\MainWindow.xaml"
                this.rb_TrainFonet_Setting.Checked += new System.Windows.RoutedEventHandler(this.SelectWhatToPractice);

            #line default
            #line hidden
                return;

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

            #line 305 "..\..\MainWindow.xaml"
                this.cb_SelectList.SelectionChanged += new System.Windows.Controls.SelectionChangedEventHandler(this.CheckSoundChapter_Changed);

            #line default
            #line hidden
                return;

            case 41:

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

            #line default
            #line hidden
                return;

            case 42:

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

            #line default
            #line hidden
                return;

            case 43:

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

            #line default
            #line hidden
                return;

            case 44:

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

            #line default
            #line hidden
                return;

            case 45:

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

            #line default
            #line hidden
                return;

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

            case 47:
                this.ckb_LoopChapter = ((System.Windows.Controls.CheckBox)(target));

            #line 333 "..\..\MainWindow.xaml"
                this.ckb_LoopChapter.Checked += new System.Windows.RoutedEventHandler(this.LoopChapter_Checked);

            #line default
            #line hidden

            #line 333 "..\..\MainWindow.xaml"
                this.ckb_LoopChapter.Unchecked += new System.Windows.RoutedEventHandler(this.LoopChapter_Checked);

            #line default
            #line hidden
                return;

            case 48:
                this.ckb_DescBox_Setting = ((System.Windows.Controls.CheckBox)(target));

            #line 334 "..\..\MainWindow.xaml"
                this.ckb_DescBox_Setting.Checked += new System.Windows.RoutedEventHandler(this.DescriptionBox_Checked);

            #line default
            #line hidden

            #line 334 "..\..\MainWindow.xaml"
                this.ckb_DescBox_Setting.Unchecked += new System.Windows.RoutedEventHandler(this.DescriptionBox_Checked);

            #line default
            #line hidden
                return;

            case 49:
                this.ckb_Randomized_Setting = ((System.Windows.Controls.CheckBox)(target));

            #line 335 "..\..\MainWindow.xaml"
                this.ckb_Randomized_Setting.Checked += new System.Windows.RoutedEventHandler(this.Randomized_Checked);

            #line default
            #line hidden

            #line 335 "..\..\MainWindow.xaml"
                this.ckb_Randomized_Setting.Unchecked += new System.Windows.RoutedEventHandler(this.Randomized_Checked);

            #line default
            #line hidden
                return;

            case 50:
                this.ckb_FullDesc = ((System.Windows.Controls.CheckBox)(target));
                return;

            case 51:
                this.ckb_AutoPlay = ((System.Windows.Controls.CheckBox)(target));

            #line 337 "..\..\MainWindow.xaml"
                this.ckb_AutoPlay.Checked += new System.Windows.RoutedEventHandler(this.AutoPlay_Checked);

            #line default
            #line hidden

            #line 337 "..\..\MainWindow.xaml"
                this.ckb_AutoPlay.Unchecked += new System.Windows.RoutedEventHandler(this.AutoPlay_Checked);

            #line default
            #line hidden
                return;

            case 52:
                this.ckb_SkipIntro = ((System.Windows.Controls.CheckBox)(target));

            #line 338 "..\..\MainWindow.xaml"
                this.ckb_SkipIntro.Checked += new System.Windows.RoutedEventHandler(this.SkipMessage_Checked);

            #line default
            #line hidden

            #line 338 "..\..\MainWindow.xaml"
                this.ckb_SkipIntro.Unchecked += new System.Windows.RoutedEventHandler(this.SkipMessage_Checked);

            #line default
            #line hidden
                return;

            case 53:
                this.ckb_showSaveLocation = ((System.Windows.Controls.CheckBox)(target));

            #line 339 "..\..\MainWindow.xaml"
                this.ckb_showSaveLocation.Checked += new System.Windows.RoutedEventHandler(this.LoopChapter_Checked);

            #line default
            #line hidden

            #line 339 "..\..\MainWindow.xaml"
                this.ckb_showSaveLocation.Unchecked += new System.Windows.RoutedEventHandler(this.LoopChapter_Checked);

            #line default
            #line hidden
                return;

            case 54:
                this.ckb_SkipCompletedWords = ((System.Windows.Controls.CheckBox)(target));

            #line 340 "..\..\MainWindow.xaml"
                this.ckb_SkipCompletedWords.Checked += new System.Windows.RoutedEventHandler(this.LoopChapter_Checked);

            #line default
            #line hidden

            #line 340 "..\..\MainWindow.xaml"
                this.ckb_SkipCompletedWords.Unchecked += new System.Windows.RoutedEventHandler(this.LoopChapter_Checked);

            #line default
            #line hidden
                return;

            case 55:
                this.ckb_Listen = ((System.Windows.Controls.CheckBox)(target));

            #line 341 "..\..\MainWindow.xaml"
                this.ckb_Listen.Checked += new System.Windows.RoutedEventHandler(this.Listen_Checked);

            #line default
            #line hidden

            #line 341 "..\..\MainWindow.xaml"
                this.ckb_Listen.Unchecked += new System.Windows.RoutedEventHandler(this.Listen_Checked);

            #line default
            #line hidden
                return;

            case 56:
                this.ckb_setting_7_Copy2 = ((System.Windows.Controls.CheckBox)(target));

            #line 342 "..\..\MainWindow.xaml"
                this.ckb_setting_7_Copy2.Checked += new System.Windows.RoutedEventHandler(this.LoopChapter_Checked);

            #line default
            #line hidden

            #line 342 "..\..\MainWindow.xaml"
                this.ckb_setting_7_Copy2.Unchecked += new System.Windows.RoutedEventHandler(this.LoopChapter_Checked);

            #line default
            #line hidden
                return;

            case 57:
                this.ckb_setting_7_Copy3 = ((System.Windows.Controls.CheckBox)(target));

            #line 343 "..\..\MainWindow.xaml"
                this.ckb_setting_7_Copy3.Checked += new System.Windows.RoutedEventHandler(this.LoopChapter_Checked);

            #line default
            #line hidden

            #line 343 "..\..\MainWindow.xaml"
                this.ckb_setting_7_Copy3.Unchecked += new System.Windows.RoutedEventHandler(this.LoopChapter_Checked);

            #line default
            #line hidden
                return;

            case 58:
                this.ckb_setting_7_Copy4 = ((System.Windows.Controls.CheckBox)(target));

            #line 344 "..\..\MainWindow.xaml"
                this.ckb_setting_7_Copy4.Checked += new System.Windows.RoutedEventHandler(this.LoopChapter_Checked);

            #line default
            #line hidden

            #line 344 "..\..\MainWindow.xaml"
                this.ckb_setting_7_Copy4.Unchecked += new System.Windows.RoutedEventHandler(this.LoopChapter_Checked);

            #line default
            #line hidden
                return;

            case 59:
                this.btn_ClearCurrentUserList = ((System.Windows.Controls.Button)(target));

            #line 362 "..\..\MainWindow.xaml"
                this.btn_ClearCurrentUserList.Click += new System.Windows.RoutedEventHandler(this.ClearCurrentUserKnownWords);

            #line default
            #line hidden
                return;

            case 60:
                this.comboBox = ((System.Windows.Controls.ComboBox)(target));
                return;

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

            case 62:
                this.cb_Voices = ((System.Windows.Controls.ComboBox)(target));

            #line 366 "..\..\MainWindow.xaml"
                this.cb_Voices.SelectionChanged += new System.Windows.Controls.SelectionChangedEventHandler(this.Cb_Voices_SelectionChanged);

            #line default
            #line hidden
                return;

            case 63:
                this.txt_WinWidth = ((System.Windows.Controls.TextBox)(target));
                return;

            case 64:
                this.txt_WinHeight = ((System.Windows.Controls.TextBox)(target));
                return;

            case 65:
                this.btn_SaveSettings = ((System.Windows.Controls.Button)(target));

            #line 380 "..\..\MainWindow.xaml"
                this.btn_SaveSettings.Click += new System.Windows.RoutedEventHandler(this.SaveSettings_Click);

            #line default
            #line hidden
                return;
            }
            this._contentLoaded = true;
        }
        void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target)
        {
            switch (connectionId)
            {
            case 1:
                this._1号线线路图 = ((System.Windows.Controls.Viewbox)(target));
                return;

            case 2:
                this.矩形_3_副本_2 = ((System.Windows.Shapes.Path)(target));
                return;

            case 3:
                this.s24 = ((System.Windows.Shapes.Path)(target));
                return;

            case 4:
                this.s23 = ((System.Windows.Shapes.Path)(target));
                return;

            case 5:
                this.s22 = ((System.Windows.Shapes.Path)(target));
                return;

            case 6:
                this.s21 = ((System.Windows.Shapes.Path)(target));
                return;

            case 7:
                this.s20 = ((System.Windows.Shapes.Path)(target));
                return;

            case 8:
                this.s19 = ((System.Windows.Shapes.Path)(target));
                return;

            case 9:
                this.s18 = ((System.Windows.Shapes.Path)(target));
                return;

            case 10:
                this.s17 = ((System.Windows.Shapes.Path)(target));
                return;

            case 11:
                this.s16 = ((System.Windows.Shapes.Path)(target));
                return;

            case 12:
                this.s15 = ((System.Windows.Shapes.Path)(target));
                return;

            case 13:
                this.s14 = ((System.Windows.Shapes.Path)(target));
                return;

            case 14:
                this.s13 = ((System.Windows.Shapes.Path)(target));
                return;

            case 15:
                this.s12 = ((System.Windows.Shapes.Path)(target));
                return;

            case 16:
                this.s11 = ((System.Windows.Shapes.Path)(target));
                return;

            case 17:
                this.s10 = ((System.Windows.Shapes.Path)(target));
                return;

            case 18:
                this.s9 = ((System.Windows.Shapes.Path)(target));
                return;

            case 19:
                this.s8 = ((System.Windows.Shapes.Path)(target));
                return;

            case 20:
                this.s7 = ((System.Windows.Shapes.Path)(target));
                return;

            case 21:
                this.s6 = ((System.Windows.Shapes.Path)(target));
                return;

            case 22:
                this.s5 = ((System.Windows.Shapes.Path)(target));
                return;

            case 23:
                this.s4 = ((System.Windows.Shapes.Path)(target));
                return;

            case 24:
                this.s3 = ((System.Windows.Shapes.Path)(target));
                return;

            case 25:
                this.s2 = ((System.Windows.Shapes.Path)(target));
                return;

            case 26:
                this.s1 = ((System.Windows.Shapes.Path)(target));
                return;

            case 27:
                this.椭圆_1_副本_14 = ((System.Windows.Shapes.Path)(target));
                return;

            case 28:
                this.组_2 = ((System.Windows.Controls.Canvas)(target));
                return;

            case 29:
                this._1_ = ((System.Windows.Controls.TextBlock)(target));
                return;

            case 30:
                this._2 = ((System.Windows.Controls.TextBlock)(target));
                return;

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

            case 32:
                this._4 = ((System.Windows.Controls.TextBlock)(target));
                return;

            case 33:
                this._5 = ((System.Windows.Controls.TextBlock)(target));
                return;

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

            case 35:
                this._7 = ((System.Windows.Controls.TextBlock)(target));
                return;

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

            case 37:
                this._9 = ((System.Windows.Controls.TextBlock)(target));
                return;

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

            case 39:
                this._11 = ((System.Windows.Controls.TextBlock)(target));
                return;

            case 40:
                this._12 = ((System.Windows.Controls.TextBlock)(target));
                return;

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

            case 42:
                this._14 = ((System.Windows.Controls.TextBlock)(target));
                return;

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

            case 44:
                this._16 = ((System.Windows.Controls.TextBlock)(target));
                return;

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

            case 46:
                this._18 = ((System.Windows.Controls.TextBlock)(target));
                return;

            case 47:
                this._19 = ((System.Windows.Controls.TextBlock)(target));
                return;

            case 48:
                this._20 = ((System.Windows.Controls.TextBlock)(target));
                return;

            case 49:
                this._21 = ((System.Windows.Controls.TextBlock)(target));
                return;

            case 50:
                this._22 = ((System.Windows.Controls.TextBlock)(target));
                return;

            case 51:
                this._23 = ((System.Windows.Controls.TextBlock)(target));
                return;

            case 52:
                this._24 = ((System.Windows.Controls.TextBlock)(target));
                return;

            case 53:
                this.木渎_金枫路_汾湖路_玉山路_苏州乐园_塔园路_滨河路_西环路_桐泾北路_广济南路_养育巷_乐桥_临顿路_相门_东环路_中央公_Copy = ((System.Windows.Controls.TextBlock)(target));
                return;

            case 54:
                this.木渎_金枫路_汾湖路_玉山路_苏州乐园_塔园路_滨河路_西环路_桐泾北路_广济南路_养育巷_乐桥_临顿路_相门_东环路_中央公_Copy1 = ((System.Windows.Controls.TextBlock)(target));
                return;

            case 55:
                this.木渎_金枫路_汾湖路_玉山路_苏州乐园_塔园路_滨河路_西环路_桐泾北路_广济南路_养育巷_乐桥_临顿路_相门_东环路_中央公_Copy2 = ((System.Windows.Controls.TextBlock)(target));
                return;

            case 56:
                this.木渎_金枫路_汾湖路_玉山路_苏州乐园_塔园路_滨河路_西环路_桐泾北路_广济南路_养育巷_乐桥_临顿路_相门_东环路_中央公_Copy3 = ((System.Windows.Controls.TextBlock)(target));
                return;

            case 57:
                this.木渎_金枫路_汾湖路_玉山路_苏州乐园_塔园路_滨河路_西环路_桐泾北路_广济南路_养育巷_乐桥_临顿路_相门_东环路_中央公_Copy4 = ((System.Windows.Controls.TextBlock)(target));
                return;

            case 58:
                this.木渎_金枫路_汾湖路_玉山路_苏州乐园_塔园路_滨河路_西环路_桐泾北路_广济南路_养育巷_乐桥_临顿路_相门_东环路_中央公_Copy5 = ((System.Windows.Controls.TextBlock)(target));
                return;

            case 59:
                this.木渎_金枫路_汾湖路_玉山路_苏州乐园_塔园路_滨河路_西环路_桐泾北路_广济南路_养育巷_乐桥_临顿路_相门_东环路_中央公_Copy6 = ((System.Windows.Controls.TextBlock)(target));
                return;

            case 60:
                this.木渎_金枫路_汾湖路_玉山路_苏州乐园_塔园路_滨河路_西环路_桐泾北路_广济南路_养育巷_乐桥_临顿路_相门_东环路_中央公_Copy7 = ((System.Windows.Controls.TextBlock)(target));
                return;

            case 61:
                this.木渎_金枫路_汾湖路_玉山路_苏州乐园_塔园路_滨河路_西环路_桐泾北路_广济南路_养育巷_乐桥_临顿路_相门_东环路_中央公_Copy8 = ((System.Windows.Controls.TextBlock)(target));
                return;

            case 62:
                this.木渎_金枫路_汾湖路_玉山路_苏州乐园_塔园路_滨河路_西环路_桐泾北路_广济南路_养育巷_乐桥_临顿路_相门_东环路_中央公_Copy9 = ((System.Windows.Controls.TextBlock)(target));
                return;

            case 63:
                this.木渎_金枫路_汾湖路_玉山路_苏州乐园_塔园路_滨河路_西环路_桐泾北路_广济南路_养育巷_乐桥_临顿路_相门_东环路_中央公_Copy10 = ((System.Windows.Controls.TextBlock)(target));
                return;

            case 64:
                this.木渎_金枫路_汾湖路_玉山路_苏州乐园_塔园路_滨河路_西环路_桐泾北路_广济南路_养育巷_乐桥_临顿路_相门_东环路_中央公_Copy11 = ((System.Windows.Controls.TextBlock)(target));
                return;

            case 65:
                this.木渎_金枫路_汾湖路_玉山路_苏州乐园_塔园路_滨河路_西环路_桐泾北路_广济南路_养育巷_乐桥_临顿路_相门_东环路_中央公_Copy12 = ((System.Windows.Controls.TextBlock)(target));
                return;

            case 66:
                this.木渎_金枫路_汾湖路_玉山路_苏州乐园_塔园路_滨河路_西环路_桐泾北路_广济南路_养育巷_乐桥_临顿路_相门_东环路_中央公_Copy13 = ((System.Windows.Controls.TextBlock)(target));
                return;

            case 67:
                this.木渎_金枫路_汾湖路_玉山路_苏州乐园_塔园路_滨河路_西环路_桐泾北路_广济南路_养育巷_乐桥_临顿路_相门_东环路_中央公_Copy14 = ((System.Windows.Controls.TextBlock)(target));
                return;

            case 68:
                this.木渎_金枫路_汾湖路_玉山路_苏州乐园_塔园路_滨河路_西环路_桐泾北路_广济南路_养育巷_乐桥_临顿路_相门_东环路_中央公_Copy15 = ((System.Windows.Controls.TextBlock)(target));
                return;

            case 69:
                this.木渎_金枫路_汾湖路_玉山路_苏州乐园_塔园路_滨河路_西环路_桐泾北路_广济南路_养育巷_乐桥_临顿路_相门_东环路_中央公_Copy16 = ((System.Windows.Controls.TextBlock)(target));
                return;

            case 70:
                this.木渎_金枫路_汾湖路_玉山路_苏州乐园_塔园路_滨河路_西环路_桐泾北路_广济南路_养育巷_乐桥_临顿路_相门_东环路_中央公_Copy17 = ((System.Windows.Controls.TextBlock)(target));
                return;

            case 71:
                this.木渎_金枫路_汾湖路_玉山路_苏州乐园_塔园路_滨河路_西环路_桐泾北路_广济南路_养育巷_乐桥_临顿路_相门_东环路_中央公_Copy18 = ((System.Windows.Controls.TextBlock)(target));
                return;

            case 72:
                this.木渎_金枫路_汾湖路_玉山路_苏州乐园_塔园路_滨河路_西环路_桐泾北路_广济南路_养育巷_乐桥_临顿路_相门_东环路_中央公_Copy19 = ((System.Windows.Controls.TextBlock)(target));
                return;

            case 73:
                this.木渎_金枫路_汾湖路_玉山路_苏州乐园_塔园路_滨河路_西环路_桐泾北路_广济南路_养育巷_乐桥_临顿路_相门_东环路_中央公_Copy20 = ((System.Windows.Controls.TextBlock)(target));
                return;

            case 74:
                this.木渎_金枫路_汾湖路_玉山路_苏州乐园_塔园路_滨河路_西环路_桐泾北路_广济南路_养育巷_乐桥_临顿路_相门_东环路_中央公_Copy21 = ((System.Windows.Controls.TextBlock)(target));
                return;

            case 75:
                this.木渎_金枫路_汾湖路_玉山路_苏州乐园_塔园路_滨河路_西环路_桐泾北路_广济南路_养育巷_乐桥_临顿路_相门_东环路_中央公_Copy22 = ((System.Windows.Controls.TextBlock)(target));
                return;

            case 76:
                this.木渎_金枫路_汾湖路_玉山路_苏州乐园_塔园路_滨河路_西环路_桐泾北路_广济南路_养育巷_乐桥_临顿路_相门_东环路_中央公_Copy23 = ((System.Windows.Controls.TextBlock)(target));
                return;
            }
            this._contentLoaded = true;
        }