public void CategoryNamesAreNotSorted()
 {
     Chart chart = new Chart();
     ColumnSeries series = new ColumnSeries();
     series.IndependentValueBinding = new Binding("Key");
     series.DependentValueBinding = new Binding("Value");
     series.ItemsSource = new KeyValuePair<string, int>[]
     {
         new KeyValuePair<string, int>("c", 3),
         new KeyValuePair<string, int>("a", 1),
         new KeyValuePair<string, int>("b", 2),
     };
     chart.Series.Add(series);
     CategoryAxis axis = null;
     TestAsync(
         chart,
         () => axis = chart.ActualAxes.OfType<CategoryAxis>().FirstOrDefault(),
         () =>
         {
             object[] labels = ChartTestUtilities.GetAxisLabels(axis).Select(l => l.DataContext).ToArray();
             Assert.AreEqual("c", labels[0]);
             Assert.AreEqual("a", labels[1]);
             Assert.AreEqual("b", labels[2]);
         });
 }
Пример #2
0
        private void x628e6c716ec340be(int xf3efd21c486a5cce, object x11d58b056c032b03)
        {
            int num = xf3efd21c486a5cce;
            switch (num)
            {
                case 1:
                    this.chart = (Chart) x11d58b056c032b03;
                    break;

                case 2:
                    this.barSeries = (ColumnSeries) x11d58b056c032b03;
                    break;

                case 3:
                    ((Button) x11d58b056c032b03).Click += new RoutedEventHandler(this.x04abae94658fc85d);
                    break;

                default:
                    this._x7dc3d9d322900926 = true;
                    if ((((uint) xf3efd21c486a5cce) - ((uint) num)) <= uint.MaxValue)
                    {
                    }
                    break;
            }
        }
        public static Chart WpfConstruct(Signal signal)
        {
            Chart chart = new Chart();
            LineSeries series = new LineSeries();
            series.DependentValuePath = "Value";
            series.IndependentValuePath = "Key";
            KeyValuePair<double, double>[] points = new KeyValuePair<double, double>[signal.T.Length];

            for (int i = 0; i < signal.T.Length; ++i)
                points[i] = new KeyValuePair<double, double>(signal.T[i], signal.X[i]);
            series.ItemsSource = points;
            chart.Height = 300;

            //Axis t = new LinearAxis();
            //t.Name = "Time";

            //Axis v = new LinearAxis();
            //v.Name = "Value";
            //chart.Axes.Add(t);
            //chart.Axes.Add(v);

            chart.Series.Add(series);

            return chart;
        }
Пример #4
0
        public Document CreatePdfDocument(Chart chart, string path)
        {
            RenderTargetBitmap renderBitmap = new RenderTargetBitmap(
                (int) chart.ActualWidth,
                (int) chart.ActualHeight,
                96d,
                96d,
                PixelFormats.Pbgra32);

            renderBitmap.Render(chart);

            MemoryStream stream = new MemoryStream();
            BitmapEncoder encoder = new BmpBitmapEncoder();
            encoder.Frames.Add(BitmapFrame.Create(renderBitmap));
            encoder.Save(stream);

            Bitmap bitmap = new Bitmap(stream);
            System.Drawing.Image image = bitmap;

            System.Drawing.Image resizedImage = ResizeImage(image, image.Width*2, image.Height);

            Document doc = new Document(PageSize.A4);
            PdfWriter.GetInstance(doc, new FileStream(path, FileMode.OpenOrCreate));
            doc.Open();
            Image pdfImage = Image.GetInstance(resizedImage, ImageFormat.Jpeg);
            doc.Add(pdfImage);
            doc.Close();
            
            return doc;
        }
        public static AxisPoint getAxisPoint(Chart xChart, RangeAxis xAxis, Point xPoint)
        {
            if (xAxis == null) return null;

            if (xAxis is LinearAxis)
            {
                // some redundant basic checks
                LinearAxis lAxis = xAxis as LinearAxis;
                double? lMin;
                double? lMax;
                lMin = lAxis.ActualMinimum;
                lMax = lAxis.ActualMaximum;

                if ((!lMin.HasValue) || (!lMax.HasValue)) return null;
                if (lMin.Value >= lMax.Value) return null;

                return new AxisPointLinear(xChart, lAxis, xPoint, lMin.Value, lMax.Value);
            }
            if (xAxis is DateTimeAxis)
            {
                // some redundant basic checks
                DateTimeAxis lAxis = xAxis as DateTimeAxis;
                DateTime? lMin;
                DateTime? lMax;
                lMin = lAxis.ActualMinimum;
                lMax = lAxis.ActualMaximum;

                if ((!lMin.HasValue) || (!lMax.HasValue)) return null;
                if (lMin.Value >= lMax.Value) return null;

                return new AxisPointDateTime(xChart, lAxis, xPoint, lMin.Value, lMax.Value);
            }

            throw new Exception("Axis type not supported yet.");
        } //
 public void PieSeriesWithOneDouble()
 {
     KeyValuePair<string, double>[] objects = new KeyValuePair<string, double>[]
         {
             new KeyValuePair<string, double>("A", 90000.0)
         };
     Chart chart = new Chart();
     DataPointSeries pieSeries = DefaultSeriesToTest;
     chart.Series.Add(pieSeries);
     pieSeries.IndependentValueBinding = new Binding("Key");
     pieSeries.DependentValueBinding = new Binding("Value");
     TestAsync(
         chart,
         () => pieSeries.ItemsSource = objects,
         () => Assert.AreEqual(1, chart.LegendItems.Cast<object>().Count()),
         () =>
         {
             IList<PieDataPoint> pieDataPoints = ChartTestUtilities.GetDataPointsForSeries(pieSeries).Cast<PieDataPoint>().ToList();
             Assert.AreEqual(1, pieDataPoints.Count);
             PieDataPoint pieDataPoint = pieDataPoints[0];
             Assert.IsNotNull(pieDataPoint.Geometry);
             Assert.AreSame(typeof(EllipseGeometry), pieDataPoint.Geometry.GetType());
             Assert.IsNotNull(pieDataPoint.GeometryHighlight);
             Assert.AreSame(typeof(EllipseGeometry), pieDataPoint.GeometryHighlight.GetType());
             Assert.IsNotNull(pieDataPoint.GeometrySelection);
             Assert.AreSame(typeof(EllipseGeometry), pieDataPoint.GeometrySelection.GetType());
         });
 }
Пример #7
0
        public void RebuildChartsPanel()
        {
            _plantAreaChartsPanel.Children.Clear();
            foreach (MeasurableParameter measurableParameter in _measurableParameters)
            {
                if (measurableParameter != null)
                {
                    Chart chart = new Chart
                    {
                        HorizontalAlignment = HorizontalAlignment.Left,
                        Width = 1100,
                        Height = 225,
                        BorderBrush = Brushes.Black,
                        Background = (LinearGradientBrush) MainWindow.ResourceDictionary["ChartBackground"],
                        Title = measurableParameter.MeasurableType,
                    };

                    AreaSeries areaSeries = new AreaSeries
                    {
                        IndependentValueBinding = new Binding("Key"),
                        DependentValueBinding = new Binding("Value"),
                        Title = measurableParameter.MeasurableType,
                    };
                    chart.Series.Add(areaSeries);
                    _plantAreaChartsPanel.Children.Add(chart);
                }
            }

            DockPanel chartDescriptorPanel = CreateChartDescriptorPanel();

            _plantAreaChartsPanel.Children.Add(chartDescriptorPanel);
        }
Пример #8
0
 public void InitializeComponent() {
     if (_contentLoaded) {
         return;
     }
     _contentLoaded = true;
     System.Windows.Application.LoadComponent(this, new System.Uri("/DataVisualizationOnWindowsPhone;component/MainPage1.xaml", System.UriKind.Relative));
     this.myChart = ((System.Windows.Controls.DataVisualization.Charting.Chart)(this.FindName("myChart")));
     this.hyperlinkButton1 = ((System.Windows.Controls.HyperlinkButton)(this.FindName("hyperlinkButton1")));
 }
 public AxisPointLinear(Chart xChart, LinearAxis xAxis, Point xPoint, double xMin, double xMax)
   : base(xChart, xAxis, xPoint)
 {
     Min = xMin;
     Max = xMax;
     Range = xMax - xMin;
     Axis = xAxis;
     MouseAxisValueAbsolute = xMin + (MouseAxisValueRelative * Range);
 } // constructor
Пример #10
0
 void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) {
     switch (connectionId)
     {
     case 1:
     this.scatter = ((System.Windows.Controls.DataVisualization.Charting.Chart)(target));
     return;
     }
     this._contentLoaded = true;
 }
 public AxisPointDateTime(Chart xChart, DateTimeAxis xAxis, Point xPoint, DateTime xMin, DateTime xMax)
   : base(xChart, xAxis, xPoint)
 {
     Min = xMin;
     Max = xMax;
     Range = xMax - xMin;
     Axis = xAxis;
     MouseAxisValueAbsolute = xMin.AddMinutes(MouseAxisValueRelative * Range.TotalMinutes);
 } // constructor
Пример #12
0
        public ResultView(Dictionary<string, DataTable> lstAllSymbols, List<int> lstDataIndexes, int nNumOfDays, string[] strClustersData)
        {
            InitializeComponent();
            this.NumOfDays = nNumOfDays;
            this.DataIndexes = lstDataIndexes;
            this.AllSymbols = lstAllSymbols;
            int nClustersCount = 1;
            int nNumOfStocks;
            strClustersData[0] = strClustersData[0].Remove(0, 2);

            tabControl.DataContext = tabItems;

            // Run over all clusters
            foreach (string strCurrCluster in strClustersData)
            {
                TabItem tabItem = AddTabItem(nClustersCount);

                //TabPage tbNewTabCluster = new TabPage("קבוצה " + nClustersCount);
                //tbNewTabCluster.AutoScroll = true;
                //tbNewTabCluster.AccessibleRole = AccessibleRole.ScrollBar;
                //tabContainer.Controls.Add(tbNewTabCluster);
                // tbNewTabCluster.Show();
                nNumOfStocks = 0;

                // Run over each stock
                foreach (string strCurrSymbol in strCurrCluster.Split(','))
                {
                    Chart c = new Chart();
                    c.Width = tabItem.Width;
                    c.Height = 100;
                    c.Name = strCurrSymbol;
                    c.Title = strCurrSymbol;
                    tabItem.Content = c;

                    tabItems.Add(tabItem);

                    // Chart chart = new Chart();
                    // chart.Name = strCurrSymbol;
                    // chart.Titles.Add(strCurrSymbol);
                    //  tbNewTabCluster.Controls.Add(chart);
                    //    chart.Width = this.tabContainer.Width;
                    //   chart.Height = 100;
                    //   chart.Top = 100 * nNumOfStocks; ;

                    // Make Chart for the current stock
                    this.MakeChart(c, AllSymbols[strCurrSymbol]);

                   // chart.Show();
                    nNumOfStocks++;
                }

                nClustersCount++;
            }

            tabControl.SelectedIndex = 0;
        }
 public void SimpleChartTwoIntegers()
 {
     DataPointSeries series = DefaultSeriesToTest;
     series.ItemsSource = new List<int>(new int[] { 1, -1 });
     Chart chart = new Chart();
     chart.Series.Add(series);
     TestAsync(
         chart,
         () => Assert.AreEqual(2, ChartTestUtilities.GetDataPointsForSeries(series).Count));
 }
 public void SimpleChartOneIntegerValueZero()
 {
     DataPointSeries series = DefaultSeriesToTest;
     series.ItemsSource = new int[] { 0 };
     Chart chart = new Chart();
     chart.Series.Add(series);
     TestAsync(
         chart,
         () => Assert.AreEqual(1, ChartTestUtilities.GetDataPointsForSeries(series).Count));
 }
Пример #15
0
 public Display(MainWindow mainWindow, Grid gvMain, Grid gvCentral, StackPanel titlePanel, TextBox inputGamer, Label response, Chart myChart, MenuItem menuExit, MenuItem menuStart, MenuItem menuMaxTry, MenuItem menuUserSelect, MenuItem menuUserCreate, MenuItem menuStatistic)
     : this(mainWindow, gvMain, gvCentral, titlePanel, inputGamer, response, myChart)
 {
     this.menuExit = menuExit;
     this.menuStart = menuStart;
     this.menuMaxTry = menuMaxTry;
     this.menuUserSelect = menuUserSelect;
     this.menuUserCreate = menuUserCreate;
     this.menuStatistic = menuStatistic;
 }
 public void AutomaticSeriesTitleNotApplied()
 {
     DataPointSeries series = DefaultSeriesToTest;
     string title = "Custom Series Title";
     series.Title = title;
     Chart chart = new Chart();
     TestAsync(
         chart,
         () => chart.Series.Add(series),
         () => Assert.AreSame(title, series.Title));
 }
            } //

            public ViewModel(Chart xChart)
            {
                _Chart = xChart;
                Points = new ObservableCollection<DataPoint>();

                Points.Add(new DataPoint() { Day = 1.0, Price = 55, Tax = 2.0 });
                Points.Add(new DataPoint() { Day = 1.5, Price = 54, Tax = 1.0 });
                Points.Add(new DataPoint() { Day = 2.0, Price = 58, Tax = -1.0 });
                Points.Add(new DataPoint() { Day = 3.0, Price = 55.5, Tax = 0.0 });
                Points.Add(new DataPoint() { Day = 4.0, Price = 53, Tax = -2.0 });
            } // constructor
Пример #18
0
 public void InitializeComponent() {
     if (_contentLoaded) {
         return;
     }
     _contentLoaded = true;
     System.Windows.Application.LoadComponent(this, new System.Uri("/DataVisualizationOnWindowsPhone;component/Chart.xaml", System.UriKind.Relative));
     this.CcfChart = ((System.Windows.Controls.DataVisualization.Charting.Chart)(this.FindName("CcfChart")));
     this.CcfLineSeries = ((System.Windows.Controls.DataVisualization.Charting.LineSeries)(this.FindName("CcfLineSeries")));
     this.CcfPredictSeries = ((System.Windows.Controls.DataVisualization.Charting.LineSeries)(this.FindName("CcfPredictSeries")));
     this.Button1 = ((System.Windows.Controls.Button)(this.FindName("Button1")));
 }
 public void InitializeComponent() {
     if (_contentLoaded) {
         return;
     }
     _contentLoaded = true;
     System.Windows.Application.LoadComponent(this, new System.Uri("/BarrasChart;component/MainPage.xaml", System.UriKind.Relative));
     this.LayoutRoot = ((System.Windows.Controls.Grid)(this.FindName("LayoutRoot")));
     this.TitlePanel = ((System.Windows.Controls.StackPanel)(this.FindName("TitlePanel")));
     this.ContentPanel = ((System.Windows.Controls.Grid)(this.FindName("ContentPanel")));
     this.barChart = ((System.Windows.Controls.DataVisualization.Charting.Chart)(this.FindName("barChart")));
 }
 public void InitializeComponent() {
     if (_contentLoaded) {
         return;
     }
     _contentLoaded = true;
     System.Windows.Application.LoadComponent(this, new System.Uri("/NIS.Module.Laboratory;component/Views/Info/InfoHistoryVysledkyView.xaml", System.UriKind.Relative));
     this.LayoutRoot = ((System.Windows.Controls.Grid)(this.FindName("LayoutRoot")));
     this.HistoryVysledkyView = ((NeuroSpeech.UIAtoms.Controls.AtomForm)(this.FindName("HistoryVysledkyView")));
     this.PacientName = ((NeuroSpeech.UIAtoms.Controls.AtomTextBox)(this.FindName("PacientName")));
     this.chart = ((System.Windows.Controls.DataVisualization.Charting.Chart)(this.FindName("chart")));
 }
 public void ScatterChartTwoIntegers()
 {
     DataPointSeries series = DefaultSeriesToTest;
     series.ItemsSource = new int[] { 1, 2 };
     series.IndependentValueBinding = new Binding();
     Chart chart = new Chart();
     chart.Series.Add(series);
     TestAsync(
         chart,
         () => Assert.AreEqual(2, ChartTestUtilities.GetDataPointsForSeries(series).Count));
 }
 public void LineChartNoValues()
 {
     DataPointSeries series = DefaultSeriesToTest;
     series.ItemsSource = new int[0];
     series.IndependentValueBinding = new Binding();
     Chart chart = new Chart();
     chart.Series.Add(series);
     TestAsync(
         chart,
         () => Assert.AreEqual(0, ChartTestUtilities.GetDataPointsForSeries(series).Count));
 }
 public void DependentAxisCanBeDateTimeAxis()
 {
     DataPointSeries series = DefaultSeriesToTest;
     series.ItemsSource = new[] { new KeyValuePair<int, DateTime>(5, new DateTime(2009, 1, 10)) };
     series.IndependentValueBinding = new Binding("Key");
     series.DependentValueBinding = new Binding("Value");
     Chart chart = new Chart();
     chart.Series.Add(series);
     TestAsync(
         chart,
         () => Assert.AreEqual(1, chart.Series.Count));
 }
Пример #24
0
 public void InitializeComponent() {
     if (_contentLoaded) {
         return;
     }
     _contentLoaded = true;
     System.Windows.Application.LoadComponent(this, new System.Uri("/SilverlightCollatz;component/MainPage.xaml", System.UriKind.Relative));
     this.LayoutRoot = ((System.Windows.Controls.Grid)(this.FindName("LayoutRoot")));
     this.Chart = ((System.Windows.Controls.DataVisualization.Charting.Chart)(this.FindName("Chart")));
     this.textBlock1 = ((System.Windows.Controls.TextBlock)(this.FindName("textBlock1")));
     this.Numero = ((System.Windows.Controls.TextBox)(this.FindName("Numero")));
     this.Collatz = ((System.Windows.Controls.Button)(this.FindName("Collatz")));
 }
 public void AutomaticSeriesTitle()
 {
     Series series1 = DefaultSeriesToTest;
     Series series2 = DefaultSeriesToTest;
     Chart chart = new Chart();
     TestAsync(
         chart,
         () => chart.Series.Add(series1),
         () => chart.Series.Add(series2),
         () => Assert.AreEqual("Series 1", series1.Title),
         () => Assert.AreEqual("Series 2", series2.Title));
 }
Пример #26
0
		private void OnLoaded(object sender, RoutedEventArgs e)
		{
			base.Loaded -= OnLoaded;
			_Chart = this.ChildOfType<Chart>();

			// Add event handlers for our children
			_Chart.MouseLeftButtonDown += OnMouseLeftButtonDown;

			// Start listening to the document holder
			App.Model.DocumentHolder.DocumentCreated += OnDocumentCreated;
			OnDocumentCreated(null, null);
		}
Пример #27
0
        public static Chart WpfConstruct(SignalData data, string name)
        {
            Chart chart = new Chart();
            LineSeries series = new LineSeries();
            KeyValuePair<double, double>[] points = new KeyValuePair<double, double>[data.T.Length];

            for (int i = 0; i < data.T.Length; ++i)
                points[i] = new KeyValuePair<double, double>(data.T[i], data.X[i]);
            series.ItemsSource = points;
            chart.Height = 300;
            chart.Series.Add(series);
            return chart;
        }
Пример #28
0
        public readonly double Length;  // object pixel display units, larger than zero

        public AxisPoint(Chart xChart, RangeAxis xAxis, Point xPoint)
        {
            if (xAxis.Orientation == AxisOrientation.X) Length = xAxis.ActualWidth;
            else Length = xAxis.ActualHeight;

            if (Length <= 0) throw new Exception("Chart object length is zero or less.");

            MouseAbsoluteLocation = xChart.TranslatePoint(xPoint, xAxis);
            if (xAxis.Orientation == AxisOrientation.X) MouseAxisValueRelative = MouseAbsoluteLocation.X / Length;
            else MouseAxisValueRelative = 1.0 - (MouseAbsoluteLocation.Y / Length);

            if (MouseAxisValueRelative > 1.0) MouseAxisValueRelative = 1.0;
            else if (MouseAxisValueRelative < 0.0) MouseAxisValueRelative = 0.0;
        } // constructor
 /// <summary>
 /// Create a ISeriesHost with a DateTime Axis and a TimeSpan so it can pick the appropriate interval.
 /// </summary>
 /// <param name="timeSpan">Time span for the data.</param>
 /// <returns>ISeriesHost for testing.</returns>
 private static Chart CreateDateTimeAxisWithIntervalChart(TimeSpan timeSpan)
 {
     Chart chart = new Chart();
     DateTimeAxis dateTimeAxis = new DateTimeAxis();
     dateTimeAxis.Orientation = AxisOrientation.X;
     chart.Axes.Add(dateTimeAxis);
     DataPointSeries series = new LineSeries();
     series.DependentValueBinding = new Binding("Day");
     series.IndependentValueBinding = new Binding();
     DateTime start = new DateTime(2008, 1, 1);
     series.ItemsSource = new DateTime[] { start, start + timeSpan };
     chart.Series.Add(series);
     return chart;
 }
Пример #30
0
 void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) {
     switch (connectionId)
     {
     case 1:
     this.mcChart = ((System.Windows.Controls.DataVisualization.Charting.Chart)(target));
     
     #line 12 "..\..\Window1.xaml"
     this.mcChart.Loaded += new System.Windows.RoutedEventHandler(this.mcChart_Loaded);
     
     #line default
     #line hidden
     return;
     }
     this._contentLoaded = true;
 }
Пример #31
0
        void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target)
        {
            switch (connectionId)
            {
            case 1:

            #line 5 "..\..\..\MainWindow.xaml"
                ((GoldAnalyse.MainWindow)(target)).MouseMove += new System.Windows.Input.MouseEventHandler(this.Window_MouseMove);

            #line default
            #line hidden

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

            #line default
            #line hidden
                return;

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

            #line 12 "..\..\..\MainWindow.xaml"
                this.tabControl1.MouseMove += new System.Windows.Input.MouseEventHandler(this.tabControl1_MouseMove);

            #line default
            #line hidden
                return;

            case 3:
                this.tabItem1 = ((System.Windows.Controls.TabItem)(target));
                return;

            case 4:
                this.stockChart = ((AmCharts.Windows.Stock.StockChart)(target));

            #line 20 "..\..\..\MainWindow.xaml"
                this.stockChart.MouseRightButtonDown += new System.Windows.Input.MouseButtonEventHandler(this.stockChart_MouseRightButtonDown);

            #line default
            #line hidden

            #line 20 "..\..\..\MainWindow.xaml"
                this.stockChart.MouseMove += new System.Windows.Input.MouseEventHandler(this.stockChart_MouseMove);

            #line default
            #line hidden
                return;

            case 5:
                this.stockSet1 = ((AmCharts.Windows.Stock.Data.DataSet)(target));
                return;

            case 6:
                this.cm = ((System.Windows.Controls.ContextMenu)(target));
                return;

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

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

            #line default
            #line hidden
                return;

            case 8:

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

            #line default
            #line hidden
                return;

            case 9:

            #line 41 "..\..\..\MainWindow.xaml"
                ((AmCharts.Windows.Stock.Chart)(target)).MouseMove += new System.Windows.Input.MouseEventHandler(this.Chart_MouseMove);

            #line default
            #line hidden

            #line 41 "..\..\..\MainWindow.xaml"
                ((AmCharts.Windows.Stock.Chart)(target)).MouseDoubleClick += new System.Windows.Input.MouseButtonEventHandler(this.Chart_MouseDoubleClick);

            #line default
            #line hidden
                return;

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

            case 11:
                this.contentControl1 = ((System.Windows.Controls.ContentControl)(target));
                return;

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

            case 13:
                this.dataGrid_Record = ((System.Windows.Controls.DataGrid)(target));

            #line 85 "..\..\..\MainWindow.xaml"
                this.dataGrid_Record.PreviewMouseDoubleClick += new System.Windows.Input.MouseButtonEventHandler(this.dataGrid_Record_PreviewMouseDoubleClick);

            #line default
            #line hidden
                return;

            case 14:
                this.tabItem2 = ((System.Windows.Controls.TabItem)(target));
                return;

            case 15:
                this.chart1 = ((System.Windows.Controls.DataVisualization.Charting.Chart)(target));
                return;

            case 16:
                this.LineSeries1 = ((System.Windows.Controls.DataVisualization.Charting.LineSeries)(target));

            #line 99 "..\..\..\MainWindow.xaml"
                this.LineSeries1.PreviewMouseRightButtonDown += new System.Windows.Input.MouseButtonEventHandler(this.LineSeries1_PreviewMouseRightButtonDown);

            #line default
            #line hidden

            #line 99 "..\..\..\MainWindow.xaml"
                this.LineSeries1.PreviewMouseMove += new System.Windows.Input.MouseEventHandler(this.LineSeries1_PreviewMouseMove);

            #line default
            #line hidden

            #line 99 "..\..\..\MainWindow.xaml"
                this.LineSeries1.MouseMove += new System.Windows.Input.MouseEventHandler(this.LineSeries1_MouseMove);

            #line default
            #line hidden
                return;

            case 17:
                this.LineSeries2 = ((System.Windows.Controls.DataVisualization.Charting.LineSeries)(target));
                return;

            case 18:
                this.LineSeries3 = ((System.Windows.Controls.DataVisualization.Charting.LineSeries)(target));
                return;

            case 19:
                this.LineSeries4 = ((System.Windows.Controls.DataVisualization.Charting.LineSeries)(target));
                return;

            case 20:
                this.LineSeries5 = ((System.Windows.Controls.DataVisualization.Charting.LineSeries)(target));
                return;

            case 21:
                this.LineSeries6 = ((System.Windows.Controls.DataVisualization.Charting.LineSeries)(target));
                return;

            case 22:
                this.LineSeries7 = ((System.Windows.Controls.DataVisualization.Charting.LineSeries)(target));
                return;

            case 23:
                this.LineSeries8 = ((System.Windows.Controls.DataVisualization.Charting.LineSeries)(target));

            #line 161 "..\..\..\MainWindow.xaml"
                this.LineSeries8.PreviewMouseRightButtonDown += new System.Windows.Input.MouseButtonEventHandler(this.LineSeries8_PreviewMouseRightButtonDown);

            #line default
            #line hidden
                return;

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

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

            #line default
            #line hidden
                return;

            case 25:
                this.chart2 = ((System.Windows.Controls.DataVisualization.Charting.Chart)(target));
                return;

            case 26:
                this.LineSeries10 = ((System.Windows.Controls.DataVisualization.Charting.LineSeries)(target));
                return;

            case 27:
                this.LineSeries11 = ((System.Windows.Controls.DataVisualization.Charting.LineSeries)(target));
                return;

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

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

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

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

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

            case 33:
                this.label8 = ((System.Windows.Controls.Label)(target));
                return;

            case 34:
                this.label9 = ((System.Windows.Controls.Label)(target));
                return;

            case 35:
                this.label_DJI = ((System.Windows.Controls.Label)(target));
                return;

            case 36:
                this.label_CCMP = ((System.Windows.Controls.Label)(target));
                return;

            case 37:
                this.label_SCIN = ((System.Windows.Controls.Label)(target));
                return;

            case 38:
                this.label_DJI_Change = ((System.Windows.Controls.Label)(target));
                return;

            case 39:
                this.label_CCMP_Change = ((System.Windows.Controls.Label)(target));
                return;

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

            case 41:
                this.label_DJI_ChangePer = ((System.Windows.Controls.Label)(target));
                return;

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

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

            case 44:
                this.label_DJI_Time = ((System.Windows.Controls.Label)(target));
                return;

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

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

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

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

            case 49:
                this.label12 = ((System.Windows.Controls.Label)(target));
                return;

            case 50:
                this.label13 = ((System.Windows.Controls.Label)(target));
                return;

            case 51:
                this.label14 = ((System.Windows.Controls.Label)(target));
                return;

            case 52:
                this.label15 = ((System.Windows.Controls.Label)(target));
                return;

            case 53:
                this.label16 = ((System.Windows.Controls.Label)(target));
                return;

            case 54:
                this.label_Price_Buy = ((System.Windows.Controls.Label)(target));
                return;

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

            case 56:
                this.label_Price_Sell = ((System.Windows.Controls.Label)(target));
                return;

            case 57:
                this.label_IntPrice_Sell = ((System.Windows.Controls.Label)(target));
                return;

            case 58:
                this.label_Price_Change = ((System.Windows.Controls.Label)(target));
                return;

            case 59:
                this.label_IntPrice_Change = ((System.Windows.Controls.Label)(target));
                return;

            case 60:
                this.label17 = ((System.Windows.Controls.Label)(target));
                return;

            case 61:
                this.label_Price_ChangePer = ((System.Windows.Controls.Label)(target));
                return;

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

            case 63:
                this.grid1 = ((System.Windows.Controls.Grid)(target));
                return;

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

            case 65:
                this.button_Compute = ((System.Windows.Controls.Button)(target));

            #line 237 "..\..\..\MainWindow.xaml"
                this.button_Compute.Click += new System.Windows.RoutedEventHandler(this.button_Compute_Click);

            #line default
            #line hidden
                return;

            case 66:
                this.button_Compare = ((System.Windows.Controls.Button)(target));

            #line 238 "..\..\..\MainWindow.xaml"
                this.button_Compare.Click += new System.Windows.RoutedEventHandler(this.button_Compare_Click);

            #line default
            #line hidden
                return;

            case 67:
                this.chart3 = ((System.Windows.Controls.DataVisualization.Charting.Chart)(target));
                return;

            case 68:
                this.LineSeries13 = ((System.Windows.Controls.DataVisualization.Charting.LineSeries)(target));
                return;

            case 69:
                this.LineSeries14 = ((System.Windows.Controls.DataVisualization.Charting.LineSeries)(target));
                return;
            }
            this._contentLoaded = true;
        }
Пример #32
0
        void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target)
        {
            switch (connectionId)
            {
            case 1:

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

            #line default
            #line hidden

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

            #line default
            #line hidden
                return;

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

            case 3:
                this.tabUtenti = ((System.Windows.Controls.TabItem)(target));
                return;

            case 4:
                this.dtUtenti = ((System.Windows.Controls.DataGrid)(target));

            #line 17 "..\..\MainWindow.xaml"
                this.dtUtenti.MouseDoubleClick += new System.Windows.Input.MouseButtonEventHandler(this.dtUtenti_MouseDoubleClick);

            #line default
            #line hidden
                return;

            case 5:
                this.grpControllo = ((System.Windows.Controls.GroupBox)(target));
                return;

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

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

            #line default
            #line hidden
                return;

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

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

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

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

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

            case 12:
                this.dati_utenti = ((System.Windows.Controls.GroupBox)(target));
                return;

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

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

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

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

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

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

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

            case 20:
                this.lblPubblicita = ((System.Windows.Controls.Label)(target));
                return;

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

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

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

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

            case 25:
                this.txtCitta = ((System.Windows.Controls.TextBox)(target));
                return;

            case 26:
                this.txtTelefono = ((System.Windows.Controls.TextBox)(target));
                return;

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

            case 28:
                this.txtProvincia = ((System.Windows.Controls.TextBox)(target));
                return;

            case 29:
                this.Rapporto_utenti = ((System.Windows.Controls.GroupBox)(target));
                return;

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

            case 31:
                this.datePagamento = ((System.Windows.Controls.DatePicker)(target));

            #line 53 "..\..\MainWindow.xaml"
                this.datePagamento.SelectedDateChanged += new System.EventHandler <System.Windows.Controls.SelectionChangedEventArgs>(this.datePagamento_SelectedDateChanged);

            #line default
            #line hidden
                return;

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

            case 33:
                this.dateScadenza = ((System.Windows.Controls.DatePicker)(target));
                return;

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

            case 35:
                this.dateCertificato = ((System.Windows.Controls.DatePicker)(target));

            #line 57 "..\..\MainWindow.xaml"
                this.dateCertificato.SelectedDateChanged += new System.EventHandler <System.Windows.Controls.SelectionChangedEventArgs>(this.dateCertificato_SelectedDateChanged);

            #line default
            #line hidden
                return;

            case 36:
                this.label_Copy2 = ((System.Windows.Controls.Label)(target));
                return;

            case 37:
                this.dateScadCertificato = ((System.Windows.Controls.DatePicker)(target));
                return;

            case 38:
                this.label_Copy3 = ((System.Windows.Controls.Label)(target));
                return;

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

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

            case 41:
                this.cmbTipoIscrizione = ((System.Windows.Controls.ComboBox)(target));

            #line 63 "..\..\MainWindow.xaml"
                this.cmbTipoIscrizione.SelectionChanged += new System.Windows.Controls.SelectionChangedEventHandler(this.cmbTipoIscrizione_SelectionChanged);

            #line default
            #line hidden
                return;

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

            case 43:
                this.txtExtra = ((System.Windows.Controls.TextBox)(target));
                return;

            case 44:
                this.label_Copy6 = ((System.Windows.Controls.Label)(target));
                return;

            case 45:
                this.dateIscrizione = ((System.Windows.Controls.DatePicker)(target));
                return;

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

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

            case 48:
                this.dateAnnuale = ((System.Windows.Controls.DatePicker)(target));

            #line 70 "..\..\MainWindow.xaml"
                this.dateAnnuale.SelectedDateChanged += new System.EventHandler <System.Windows.Controls.SelectionChangedEventArgs>(this.dateAnnuale_SelectedDateChanged);

            #line default
            #line hidden
                return;

            case 49:
                this.label_Copy8 = ((System.Windows.Controls.Label)(target));
                return;

            case 50:
                this.dateScadAnnuale = ((System.Windows.Controls.DatePicker)(target));
                return;

            case 51:
                this.btnInserisci = ((System.Windows.Controls.Button)(target));

            #line 75 "..\..\MainWindow.xaml"
                this.btnInserisci.Click += new System.Windows.RoutedEventHandler(this.btnInserisci_Click);

            #line default
            #line hidden
                return;

            case 52:
                this.Cerca = ((System.Windows.Controls.GroupBox)(target));
                return;

            case 53:
                this.grdCerca = ((System.Windows.Controls.Grid)(target));
                return;

            case 54:
                this.txtCercaNome = ((System.Windows.Controls.TextBox)(target));
                return;

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

            case 56:
                this.txtCercaCognome = ((System.Windows.Controls.TextBox)(target));
                return;

            case 57:
                this.btnCerca = ((System.Windows.Controls.Button)(target));

            #line 81 "..\..\MainWindow.xaml"
                this.btnCerca.Click += new System.Windows.RoutedEventHandler(this.btnCerca_Click);

            #line default
            #line hidden
                return;

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

            case 59:
                this.btnAnnulla = ((System.Windows.Controls.Button)(target));

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

            #line default
            #line hidden
                return;

            case 60:
                this.btnModifica = ((System.Windows.Controls.Button)(target));

            #line 86 "..\..\MainWindow.xaml"
                this.btnModifica.Click += new System.Windows.RoutedEventHandler(this.btnModifica_Click);

            #line default
            #line hidden
                return;

            case 61:
                this.btnFatto = ((System.Windows.Controls.Button)(target));

            #line 87 "..\..\MainWindow.xaml"
                this.btnFatto.Click += new System.Windows.RoutedEventHandler(this.btnFatto_Click);

            #line default
            #line hidden
                return;

            case 62:
                this.btnElimina = ((System.Windows.Controls.Button)(target));

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

            #line default
            #line hidden
                return;

            case 63:
                this.btnRinnova = ((System.Windows.Controls.Button)(target));

            #line 89 "..\..\MainWindow.xaml"
                this.btnRinnova.Click += new System.Windows.RoutedEventHandler(this.btnRinnova_Click);

            #line default
            #line hidden
                return;

            case 64:
                this.tabAvanzate = ((System.Windows.Controls.TabItem)(target));
                return;

            case 65:
                this.grdAvanzate = ((System.Windows.Controls.Grid)(target));
                return;

            case 66:
                this.grpQuery = ((System.Windows.Controls.GroupBox)(target));
                return;

            case 67:
                this.txtQuery = ((System.Windows.Controls.TextBox)(target));
                return;

            case 68:
                this.btnQuery = ((System.Windows.Controls.Button)(target));

            #line 97 "..\..\MainWindow.xaml"
                this.btnQuery.Click += new System.Windows.RoutedEventHandler(this.btnQuery_Click);

            #line default
            #line hidden
                return;

            case 69:
                this.dtQuery = ((System.Windows.Controls.DataGrid)(target));
                return;

            case 70:
                this.grpStat = ((System.Windows.Controls.GroupBox)(target));
                return;

            case 71:
                this.dateDa = ((System.Windows.Controls.DatePicker)(target));
                return;

            case 72:
                this.dateFino = ((System.Windows.Controls.DatePicker)(target));
                return;

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

            case 74:
                this.label3_Copy = ((System.Windows.Controls.Label)(target));
                return;

            case 75:
                this.btnCalcola = ((System.Windows.Controls.Button)(target));

            #line 107 "..\..\MainWindow.xaml"
                this.btnCalcola.Click += new System.Windows.RoutedEventHandler(this.btnCalcola_Click);

            #line default
            #line hidden
                return;

            case 76:
                this.chartDati = ((System.Windows.Controls.DataVisualization.Charting.Chart)(target));
                return;

            case 77:
                this.chartIncassi = ((System.Windows.Controls.DataVisualization.Charting.Chart)(target));
                return;
            }
            this._contentLoaded = true;
        }
Пример #33
0
        void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target)
        {
            switch (connectionId)
            {
            case 1:

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

            #line default
            #line hidden
                return;

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

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

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

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

            #line default
            #line hidden
                return;

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

            #line 32 "..\..\MainWindow.xaml"
                this.Cb_AutoUpdate.Checked += new System.Windows.RoutedEventHandler(this.Cb_AutoUpdate_Checked);

            #line default
            #line hidden

            #line 32 "..\..\MainWindow.xaml"
                this.Cb_AutoUpdate.Unchecked += new System.Windows.RoutedEventHandler(this.Cb_AutoUpdate_Unchecked);

            #line default
            #line hidden
                return;

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

            #line 33 "..\..\MainWindow.xaml"
                this.Cmb_UpdateTime.SelectionChanged += new System.Windows.Controls.SelectionChangedEventHandler(this.Cmb_UpdateTime_SelectionChanged);

            #line default
            #line hidden
                return;

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

            case 8:
                this.mcChart = ((System.Windows.Controls.DataVisualization.Charting.Chart)(target));
                return;

            case 9:
                this.Table = ((System.Windows.Controls.Border)(target));
                return;

            case 10:
                this.Dgv_Table = ((System.Windows.Controls.DataGrid)(target));
                return;
            }
            this._contentLoaded = true;
        }
Пример #34
0
        void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target)
        {
            switch (connectionId)
            {
            case 1:
                this.LineChart = ((System.Windows.Controls.DataVisualization.Charting.Chart)(target));

            #line 12 "..\..\GraphicsChild.xaml"
                this.LineChart.MouseWheel += new System.Windows.Input.MouseWheelEventHandler(this.LineChart_MouseWheel);

            #line default
            #line hidden

            #line 12 "..\..\GraphicsChild.xaml"
                this.LineChart.MouseMove += new System.Windows.Input.MouseEventHandler(this.LineChart_MouseMove);

            #line default
            #line hidden
                return;

            case 2:
                this.XLinearAxis = ((System.Windows.Controls.DataVisualization.Charting.LinearAxis)(target));

            #line 14 "..\..\GraphicsChild.xaml"
                this.XLinearAxis.MouseWheel += new System.Windows.Input.MouseWheelEventHandler(this.XLinearAxis_MouseWheel);

            #line default
            #line hidden
                return;

            case 3:
                this.YLinearAxis = ((System.Windows.Controls.DataVisualization.Charting.LinearAxis)(target));

            #line 15 "..\..\GraphicsChild.xaml"
                this.YLinearAxis.MouseWheel += new System.Windows.Input.MouseWheelEventHandler(this.YLinearAxis_MouseWheel);

            #line default
            #line hidden
                return;

            case 4:
                this.PlotLineSeries = ((System.Windows.Controls.DataVisualization.Charting.LineSeries)(target));
                return;

            case 5:
                this.ScndPlotLineSeries = ((System.Windows.Controls.DataVisualization.Charting.LineSeries)(target));
                return;

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

            #line 40 "..\..\GraphicsChild.xaml"
                this.ResetButton.Click += new System.Windows.RoutedEventHandler(this.ResetButton_Click);

            #line default
            #line hidden
                return;

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

            #line 43 "..\..\GraphicsChild.xaml"
                this.MarkCheckBox.Checked += new System.Windows.RoutedEventHandler(this.MarkCheckBox_Checked);

            #line default
            #line hidden

            #line 43 "..\..\GraphicsChild.xaml"
                this.MarkCheckBox.Unchecked += new System.Windows.RoutedEventHandler(this.MarkCheckBox_Unchecked);

            #line default
            #line hidden
                return;
            }
            this._contentLoaded = true;
        }
Пример #35
0
        void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target)
        {
            switch (connectionId)
            {
            case 1:
                this.mainMenu = ((System.Windows.Controls.Menu)(target));
                return;

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

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

            #line default
            #line hidden
                return;

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

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

            #line default
            #line hidden
                return;

            case 4:

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

            #line default
            #line hidden
                return;

            case 5:

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

            #line default
            #line hidden
                return;

            case 6:
                this.SimulationChart = ((System.Windows.Controls.DataVisualization.Charting.Chart)(target));
                return;

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

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

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

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

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

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

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

            #line 52 "..\..\MainWindow.xaml"
                this.StartingPotential.PreviewTextInput += new System.Windows.Input.TextCompositionEventHandler(this.StartingPotential_PreviewTextInput);

            #line default
            #line hidden
                return;

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

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

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

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

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

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

            #line default
            #line hidden
                return;
            }
            this._contentLoaded = true;
        }
Пример #36
0
        void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target)
        {
            switch (connectionId)
            {
            case 1:

            #line 10 "..\..\TestWindow.xaml"
                ((MyApp.TestWindow)(target)).Loaded += new System.Windows.RoutedEventHandler(this.Window_Loaded);

            #line default
            #line hidden

            #line 10 "..\..\TestWindow.xaml"
                ((MyApp.TestWindow)(target)).Closed += new System.EventHandler(this.Window_Closed);

            #line default
            #line hidden
                return;

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

            #line 26 "..\..\TestWindow.xaml"
                this.FirstGroupCheckBox.Click += new System.Windows.RoutedEventHandler(this.GroupCheckBox_Click);

            #line default
            #line hidden
                return;

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

            #line 27 "..\..\TestWindow.xaml"
                this.SecondGroupCheckBox.Click += new System.Windows.RoutedEventHandler(this.GroupCheckBox_Click);

            #line default
            #line hidden
                return;

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

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

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

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

            #line 32 "..\..\TestWindow.xaml"
                this.StartButton.Click += new System.Windows.RoutedEventHandler(this.Start_Click);

            #line default
            #line hidden
                return;

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

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

            #line 35 "..\..\TestWindow.xaml"
                this.InfinitiveTextBox.KeyDown += new System.Windows.Input.KeyEventHandler(this.TextBox_KeyDown);

            #line default
            #line hidden
                return;

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

            #line 37 "..\..\TestWindow.xaml"
                this.PastSimpleTextBox.KeyDown += new System.Windows.Input.KeyEventHandler(this.TextBox_KeyDown);

            #line default
            #line hidden
                return;

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

            #line 39 "..\..\TestWindow.xaml"
                this.PastParticipleTextBox.KeyDown += new System.Windows.Input.KeyEventHandler(this.TextBox_KeyDown);

            #line default
            #line hidden
                return;

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

            #line 40 "..\..\TestWindow.xaml"
                this.EnterButton.Click += new System.Windows.RoutedEventHandler(this.EnterButton_Click);

            #line default
            #line hidden

            #line 40 "..\..\TestWindow.xaml"
                this.EnterButton.KeyDown += new System.Windows.Input.KeyEventHandler(this.TextBox_KeyDown);

            #line default
            #line hidden
                return;

            case 13:
                this.GridLabels = ((System.Windows.Controls.DataGrid)(target));
                return;

            case 14:
                this.DataPieChart = ((System.Windows.Controls.DataVisualization.Charting.Chart)(target));
                return;

            case 15:
                this.AnswerGrid = ((System.Windows.Controls.DataGrid)(target));
                return;
            }
            this._contentLoaded = true;
        }
Пример #37
0
        void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target)
        {
            switch (connectionId)
            {
            case 1:

            #line 8 "..\..\..\MainWindow.xaml"
                ((JmeterDashboard.MainWindow)(target)).Closed += new System.EventHandler(this.Window_Closed);

            #line default
            #line hidden
                return;

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

            case 3:

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

            #line default
            #line hidden
                return;

            case 4:

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

            #line default
            #line hidden
                return;

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

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

            #line default
            #line hidden
                return;

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

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

            #line 34 "..\..\..\MainWindow.xaml"
                this.btnStartListener.Click += new System.Windows.RoutedEventHandler(this.btnStartListener_Click);

            #line default
            #line hidden
                return;

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

            case 9:

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

            #line default
            #line hidden
                return;

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

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

            #line default
            #line hidden
                return;

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

            #line 59 "..\..\..\MainWindow.xaml"
                this.btnVirtualUserLeft.Click += new System.Windows.RoutedEventHandler(this.btnVirtualUserLeft_Click);

            #line default
            #line hidden
                return;

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

            #line 60 "..\..\..\MainWindow.xaml"
                this.btnResponseTimeLeft.Click += new System.Windows.RoutedEventHandler(this.btnResponseTimeLeft_Click);

            #line default
            #line hidden
                return;

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

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

            #line default
            #line hidden
                return;

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

            #line 62 "..\..\..\MainWindow.xaml"
                this.btnSizeCountLeft.Click += new System.Windows.RoutedEventHandler(this.btnSizeLeft_Click);

            #line default
            #line hidden
                return;

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

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

            #line default
            #line hidden
                return;

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

            #line 66 "..\..\..\MainWindow.xaml"
                this.btnAllTPSLeft.Click += new System.Windows.RoutedEventHandler(this.btnAllTPSLeft_Click);

            #line default
            #line hidden
                return;

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

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

            #line default
            #line hidden
                return;

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

            #line 68 "..\..\..\MainWindow.xaml"
                this.btnAllVULeft.Click += new System.Windows.RoutedEventHandler(this.btnAllVULeft_Click);

            #line default
            #line hidden
                return;

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

            #line 69 "..\..\..\MainWindow.xaml"
                this.btnAllErrorLeft.Click += new System.Windows.RoutedEventHandler(this.btnAllErrorLeft_Click);

            #line default
            #line hidden
                return;

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

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

            #line default
            #line hidden
                return;

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

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

            #line default
            #line hidden
                return;

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

            #line 80 "..\..\..\MainWindow.xaml"
                this.btnVirtualUserRight.Click += new System.Windows.RoutedEventHandler(this.btnVirtualUserRight_Click);

            #line default
            #line hidden
                return;

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

            #line 81 "..\..\..\MainWindow.xaml"
                this.btnResponseTimeRight.Click += new System.Windows.RoutedEventHandler(this.btnResponseTimeRight_Click);

            #line default
            #line hidden
                return;

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

            #line 82 "..\..\..\MainWindow.xaml"
                this.btnErrorCountRight.Click += new System.Windows.RoutedEventHandler(this.btnErrorCountRight_Click);

            #line default
            #line hidden
                return;

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

            #line 83 "..\..\..\MainWindow.xaml"
                this.btnSizeCountRight.Click += new System.Windows.RoutedEventHandler(this.btnSizeRight_Click);

            #line default
            #line hidden
                return;

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

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

            #line default
            #line hidden
                return;

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

            #line 87 "..\..\..\MainWindow.xaml"
                this.btnAllTPSRight.Click += new System.Windows.RoutedEventHandler(this.btnAllTPSRight_Click);

            #line default
            #line hidden
                return;

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

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

            #line default
            #line hidden
                return;

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

            #line 89 "..\..\..\MainWindow.xaml"
                this.btnAllVURight.Click += new System.Windows.RoutedEventHandler(this.btnAllVURight_Click);

            #line default
            #line hidden
                return;

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

            #line 90 "..\..\..\MainWindow.xaml"
                this.btnAllErrorRight.Click += new System.Windows.RoutedEventHandler(this.btnAllErrorRight_Click);

            #line default
            #line hidden
                return;

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

            #line 91 "..\..\..\MainWindow.xaml"
                this.btnAllFileSizeRight.Click += new System.Windows.RoutedEventHandler(this.btnAllFilesizeRight_Click);

            #line default
            #line hidden
                return;

            case 32:
                this.ChartScrollViewer = ((System.Windows.Controls.ScrollViewer)(target));
                return;

            case 33:
                this.lineChart = ((System.Windows.Controls.DataVisualization.Charting.Chart)(target));
                return;

            case 34:
                this.listViewHTTPResponseCodeResult = ((System.Windows.Controls.ListView)(target));
                return;

            case 35:
                this.listViewThreadGroupResult = ((System.Windows.Controls.ListView)(target));
                return;

            case 36:
                this.listBoxSummaryResult = ((System.Windows.Controls.ListBox)(target));
                return;
            }
            this._contentLoaded = true;
        }
Пример #38
0
        void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target)
        {
            switch (connectionId)
            {
            case 1:

            #line 11 "..\..\MainWindow.xaml"
                ((MarketDataAnalyser.MainWindow)(target)).Loaded += new System.Windows.RoutedEventHandler(this.PopulateList);

            #line default
            #line hidden
                return;

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

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

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

            #line default
            #line hidden
                return;

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

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

            #line default
            #line hidden
                return;

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

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

            #line default
            #line hidden
                return;

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

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

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

            #line default
            #line hidden
                return;

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

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

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

            case 11:
                this.stackPanelStockDetails = ((System.Windows.Controls.StackPanel)(target));
                return;

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

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

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

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

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

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

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

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

            case 20:
                this.label1_Copy4 = ((System.Windows.Controls.Label)(target));
                return;

            case 21:
                this.lblVolume = ((System.Windows.Controls.Label)(target));
                return;

            case 22:
                this.lineChart = ((System.Windows.Controls.DataVisualization.Charting.Chart)(target));
                return;

            case 23:
                this.btnMovingAvg = ((System.Windows.Controls.Button)(target));
                return;
            }
            this._contentLoaded = true;
        }
Пример #39
0
        void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target)
        {
            switch (connectionId)
            {
            case 1:
                this.stackpanel = ((System.Windows.Controls.StackPanel)(target));
                return;

            case 2:
                this.groupBox1 = ((System.Windows.Controls.GroupBox)(target));
                return;

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

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

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

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

            #line 24 "..\..\..\..\UI\StatProgressionClasseUI.xaml"
                this.txtAnneeScolaire.TextChanged += new System.Windows.Controls.TextChangedEventHandler(this.txtAnneeScolaire_TextChanged);

            #line default
            #line hidden

            #line 24 "..\..\..\..\UI\StatProgressionClasseUI.xaml"
                this.txtAnneeScolaire.PreviewTextInput += new System.Windows.Input.TextCompositionEventHandler(this.txtAnneeScolaire_PreviewTextInput);

            #line default
            #line hidden
                return;

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

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

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

            #line 27 "..\..\..\..\UI\StatProgressionClasseUI.xaml"
                this.cmdOK.Click += new System.Windows.RoutedEventHandler(this.cmdOK_Click);

            #line default
            #line hidden
                return;

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

            #line 28 "..\..\..\..\UI\StatProgressionClasseUI.xaml"
                this.cmdAnnuler.Click += new System.Windows.RoutedEventHandler(this.cmdAnnuler_Click);

            #line default
            #line hidden
                return;

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

            case 12:
                this.cmbExamen = ((System.Windows.Controls.ComboBox)(target));
                return;

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

            #line 31 "..\..\..\..\UI\StatProgressionClasseUI.xaml"
                this.cmdImprimer.Click += new System.Windows.RoutedEventHandler(this.cmdImprimer_Click);

            #line default
            #line hidden
                return;

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

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

            case 16:
                this.columnChart = ((System.Windows.Controls.DataVisualization.Charting.Chart)(target));
                return;

            case 17:
                this.matieres = ((System.Windows.Controls.DataVisualization.Charting.ColumnSeries)(target));
                return;

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

            case 19:
                this.lineChart = ((System.Windows.Controls.DataVisualization.Charting.Chart)(target));
                return;

            case 20:
                this.matieresLine = ((System.Windows.Controls.DataVisualization.Charting.LineSeries)(target));
                return;
            }
            this._contentLoaded = true;
        }
Пример #40
0
        void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target)
        {
            switch (connectionId)
            {
            case 1:
                this.Throttle = ((System.Windows.Controls.TextBlock)(target));
                return;

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

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

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

            case 5:
                this.RudderRec = ((System.Windows.Shapes.Rectangle)(target));
                return;

            case 6:
                this.RudderSlider = ((System.Windows.Shapes.Rectangle)(target));
                return;

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

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

            case 9:

            #line 244 "..\..\MainWindow.xaml"
                ((System.Windows.Controls.ListBox)(target)).SelectionChanged += new System.Windows.Controls.SelectionChangedEventHandler(this.FeatureChoice_SelectionChanged);

            #line default
            #line hidden
                return;

            case 10:
                this.MainGraph = ((System.Windows.Controls.DataVisualization.Charting.Chart)(target));
                return;

            case 11:
                this.CorrelatedGraph = ((System.Windows.Controls.DataVisualization.Charting.Chart)(target));
                return;

            case 12:
                this.Regression_Graph = ((System.Windows.Controls.DataVisualization.Charting.Chart)(target));
                return;

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

            #line 360 "..\..\MainWindow.xaml"
                this.LoadCsv.Click += new System.Windows.RoutedEventHandler(this.LoadCsv_OnClick);

            #line default
            #line hidden
                return;

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

            #line 365 "..\..\MainWindow.xaml"
                this.LoadXml.Click += new System.Windows.RoutedEventHandler(this.LoadXml_OnClick);

            #line default
            #line hidden
                return;

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

            #line 370 "..\..\MainWindow.xaml"
                this.StartSim.Click += new System.Windows.RoutedEventHandler(this.StartSim_OnClick);

            #line default
            #line hidden
                return;

            case 16:
                this.Previous = ((System.Windows.Shapes.Rectangle)(target));

            #line 385 "..\..\MainWindow.xaml"
                this.Previous.MouseLeftButtonUp += new System.Windows.Input.MouseButtonEventHandler(this.Previous_MouseLeftButtonUp);

            #line default
            #line hidden
                return;

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

            #line 393 "..\..\MainWindow.xaml"
                this.Rewind.MouseLeftButtonUp += new System.Windows.Input.MouseButtonEventHandler(this.Rewind_MouseLeftButtonUp);

            #line default
            #line hidden
                return;

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

            #line 399 "..\..\MainWindow.xaml"
                this.Play.MouseLeftButtonUp += new System.Windows.Input.MouseButtonEventHandler(this.Play_MouseLeftButtonUp);

            #line default
            #line hidden
                return;

            case 19:
                this.Pause = ((System.Windows.Shapes.Rectangle)(target));

            #line 407 "..\..\MainWindow.xaml"
                this.Pause.MouseLeftButtonUp += new System.Windows.Input.MouseButtonEventHandler(this.Pause_MouseLeftButtonUp);

            #line default
            #line hidden
                return;

            case 20:
                this.Stop = ((System.Windows.Shapes.Rectangle)(target));

            #line 411 "..\..\MainWindow.xaml"
                this.Stop.MouseLeftButtonUp += new System.Windows.Input.MouseButtonEventHandler(this.Stop_MouseLeftButtonUp);

            #line default
            #line hidden
                return;

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

            #line 419 "..\..\MainWindow.xaml"
                this.FastForward.MouseLeftButtonUp += new System.Windows.Input.MouseButtonEventHandler(this.FastForward_MouseLeftButtonUp);

            #line default
            #line hidden
                return;

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

            #line 429 "..\..\MainWindow.xaml"
                this.Next.MouseLeftButtonUp += new System.Windows.Input.MouseButtonEventHandler(this.Next_MouseLeftButtonUp);

            #line default
            #line hidden
                return;

            case 23:

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

            #line default
            #line hidden
                return;

            case 24:
                this.SimpleAlgorithm = ((System.Windows.Controls.RadioButton)(target));

            #line 445 "..\..\MainWindow.xaml"
                this.SimpleAlgorithm.Click += new System.Windows.RoutedEventHandler(this.Simple_Checked);

            #line default
            #line hidden
                return;

            case 25:
                this.CircleAlgorithm = ((System.Windows.Controls.RadioButton)(target));

            #line 447 "..\..\MainWindow.xaml"
                this.CircleAlgorithm.Click += new System.Windows.RoutedEventHandler(this.Circle_Checked);

            #line default
            #line hidden
                return;

            case 26:
                this.TimeSlider = ((System.Windows.Controls.Slider)(target));
                return;
            }
            this._contentLoaded = true;
        }
Пример #41
0
        void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target)
        {
            switch (connectionId)
            {
            case 1:
                this.lbPersons = ((System.Windows.Controls.ListBox)(target));

            #line 23 "..\..\MainWindow.xaml"
                this.lbPersons.SelectionChanged += new System.Windows.Controls.SelectionChangedEventHandler(this.lbPersons_SelectionChanged);

            #line default
            #line hidden
                return;

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

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

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

            #line default
            #line hidden
                return;

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

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

            #line default
            #line hidden
                return;

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

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

            #line default
            #line hidden
                return;

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

            case 7:
                this.ColumnSeries = ((System.Windows.Controls.DataVisualization.Charting.Chart)(target));
                return;

            case 8:
                this.lbTasks = ((System.Windows.Controls.ListBox)(target));

            #line 42 "..\..\MainWindow.xaml"
                this.lbTasks.SelectionChanged += new System.Windows.Controls.SelectionChangedEventHandler(this.lbTasks_SelectionChanged);

            #line default
            #line hidden
                return;

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

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

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

            #line default
            #line hidden
                return;

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

            #line 46 "..\..\MainWindow.xaml"
                this.btnEditTask.Click += new System.Windows.RoutedEventHandler(this.btnEditTask_Click);

            #line default
            #line hidden
                return;

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

            #line 47 "..\..\MainWindow.xaml"
                this.btnDeleteTask.Click += new System.Windows.RoutedEventHandler(this.btnDeleteTask_Click);

            #line default
            #line hidden
                return;
            }
            this._contentLoaded = true;
        }
Пример #42
0
        void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target)
        {
            switch (connectionId)
            {
            case 1:

            #line 11 "..\..\CompareWindow.xaml"
                ((MarketDataAnalyser.CompareWindow)(target)).Loaded += new System.Windows.RoutedEventHandler(this.PopulateComboBoxes);

            #line default
            #line hidden
                return;

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

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

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

            #line 18 "..\..\CompareWindow.xaml"
                this.btnBack.Click += new System.Windows.RoutedEventHandler(this.ShowMainWindow);

            #line default
            #line hidden
                return;

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

            #line 20 "..\..\CompareWindow.xaml"
                this.btnSignOut.Click += new System.Windows.RoutedEventHandler(this.ShowLoginWindow);

            #line default
            #line hidden
                return;

            case 6:
                this.groupBoxFirst = ((System.Windows.Controls.GroupBox)(target));
                return;

            case 7:
                this.stackPanelStockDetails = ((System.Windows.Controls.StackPanel)(target));
                return;

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

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

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

            case 11:
                this.lblClosingPriceFirst = ((System.Windows.Controls.Label)(target));
                return;

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

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

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

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

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

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

            case 18:
                this.groupBoxSecond = ((System.Windows.Controls.GroupBox)(target));
                return;

            case 19:
                this.stackPanelStockDetailsSecond = ((System.Windows.Controls.StackPanel)(target));
                return;

            case 20:
                this.label1_Copy_2 = ((System.Windows.Controls.Label)(target));
                return;

            case 21:
                this.lblOpeningPriceSecond = ((System.Windows.Controls.Label)(target));
                return;

            case 22:
                this.label1_Copy1_2 = ((System.Windows.Controls.Label)(target));
                return;

            case 23:
                this.lblClosingPriceSecond = ((System.Windows.Controls.Label)(target));
                return;

            case 24:
                this.label1_Copy2_2 = ((System.Windows.Controls.Label)(target));
                return;

            case 25:
                this.lblHighSecond = ((System.Windows.Controls.Label)(target));
                return;

            case 26:
                this.label1_Copy3_2 = ((System.Windows.Controls.Label)(target));
                return;

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

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

            case 29:
                this.lblVolumeSecond = ((System.Windows.Controls.Label)(target));
                return;

            case 30:
                this.dateTo = ((System.Windows.Controls.DatePicker)(target));
                return;

            case 31:
                this.dateFrom = ((System.Windows.Controls.DatePicker)(target));
                return;

            case 32:
                this.listBoxFirst = ((System.Windows.Controls.ListBox)(target));
                return;

            case 33:
                this.listBoxSecond = ((System.Windows.Controls.ListBox)(target));
                return;

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

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

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

            #line 76 "..\..\CompareWindow.xaml"
                this.btnCompare.Click += new System.Windows.RoutedEventHandler(this.CompareTheStocks);

            #line default
            #line hidden
                return;

            case 37:
                this.lineChart = ((System.Windows.Controls.DataVisualization.Charting.Chart)(target));
                return;

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

            case 39:
                this.lblStockNameFirst = ((System.Windows.Controls.Label)(target));
                return;

            case 40:
                this.greenArrowFirst = ((System.Windows.Shapes.Polygon)(target));
                return;

            case 41:
                this.redArrowFirst = ((System.Windows.Shapes.Polygon)(target));
                return;

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

            case 43:
                this.greenArrowSecond = ((System.Windows.Shapes.Polygon)(target));
                return;

            case 44:
                this.redArrowSecond = ((System.Windows.Shapes.Polygon)(target));
                return;

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

            case 46:
                this.lblTickerValueSecond = ((System.Windows.Controls.Label)(target));
                return;
            }
            this._contentLoaded = true;
        }
Пример #43
0
        void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target)
        {
            switch (connectionId)
            {
            case 1:

            #line 8 "..\..\..\MainWindow.xaml"
                ((NetworkMonitorApplication.MainWindow)(target)).Closed += new System.EventHandler(this.Window_Closed);

            #line default
            #line hidden

            #line 9 "..\..\..\MainWindow.xaml"
                ((NetworkMonitorApplication.MainWindow)(target)).StateChanged += new System.EventHandler(this.Window_StateChanged);

            #line default
            #line hidden
                return;

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

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

            #line default
            #line hidden
                return;

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

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

            #line default
            #line hidden
                return;

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

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

            #line default
            #line hidden
                return;

            case 5:
                this.tabItemPackets = ((System.Windows.Controls.TabItem)(target));
                return;

            case 6:
                this.mainContainer = ((System.Windows.Controls.DockPanel)(target));
                return;

            case 7:
                this.dataGridPackets = ((System.Windows.Controls.DataGrid)(target));

            #line 50 "..\..\..\MainWindow.xaml"
                this.dataGridPackets.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.dataGridPackets_MouseDown);

            #line default
            #line hidden
                return;

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

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

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

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

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

            #line 124 "..\..\..\MainWindow.xaml"
                this.btnFilter.Click += new System.Windows.RoutedEventHandler(this.btnFilter_Click);

            #line default
            #line hidden
                return;

            case 13:
                this.progressBarFiltering = ((NetworkMonitorApplication.CircularProgressBar)(target));
                return;

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

            case 15:
                this.tabItemTrafficStatistics = ((System.Windows.Controls.TabItem)(target));
                return;

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

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

            #line 152 "..\..\..\MainWindow.xaml"
                this.btnShowStatistics.Click += new System.Windows.RoutedEventHandler(this.btnShowStatistics_Click);

            #line default
            #line hidden
                return;

            case 18:
                this.progressBarStatistics = ((NetworkMonitorApplication.CircularProgressBar)(target));
                return;

            case 19:
                this.chartTraffic = ((System.Windows.Controls.DataVisualization.Charting.Chart)(target));
                return;

            case 20:
                this.lblTimeValue = ((System.Windows.Controls.Label)(target));
                return;

            case 21:
                this.tabItemApplicationStatistics = ((System.Windows.Controls.TabItem)(target));
                return;

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

            #line 179 "..\..\..\MainWindow.xaml"
                this.btnShowAppStatistics.Click += new System.Windows.RoutedEventHandler(this.btnShowAppStatistics_Click);

            #line default
            #line hidden
                return;

            case 23:
                this.progressBarAppStatistics = ((NetworkMonitorApplication.CircularProgressBar)(target));
                return;

            case 24:
                this.chartApplications = ((System.Windows.Controls.DataVisualization.Charting.Chart)(target));
                return;

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

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

            #line default
            #line hidden
                return;

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

            case 27:
                this.lblStatus = ((System.Windows.Controls.Label)(target));
                return;
            }
            this._contentLoaded = true;
        }
        void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target)
        {
            switch (connectionId)
            {
            case 1:
                this.TypKonwersji = ((System.Windows.Controls.ComboBox)(target));

            #line 44 "..\..\KonwersjaSygnalow.xaml"
                this.TypKonwersji.SelectionChanged += new System.Windows.Controls.SelectionChangedEventHandler(this.ZmianaSposobuKonwersji);

            #line default
            #line hidden
                return;

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

            case 3:
                this.Parametry = ((System.Windows.Controls.ComboBox)(target));
                return;

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

            #line 49 "..\..\KonwersjaSygnalow.xaml"
                this.Konwertuj.Click += new System.Windows.RoutedEventHandler(this.Konwertuj_Click);

            #line default
            #line hidden
                return;

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

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

            #line 54 "..\..\KonwersjaSygnalow.xaml"
                this.Rekonstruuj.Click += new System.Windows.RoutedEventHandler(this.Rekonstruuj_Click);

            #line default
            #line hidden
                return;

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

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

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

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

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

            #line 68 "..\..\KonwersjaSygnalow.xaml"
                this.LiczStatystyki.Click += new System.Windows.RoutedEventHandler(this.LiczStatystyki_Click);

            #line default
            #line hidden
                return;

            case 12:
                this.Baza = ((System.Windows.Controls.DataVisualization.Charting.Chart)(target));
                return;

            case 13:
                this.PoRekonstrukcji = ((System.Windows.Controls.DataVisualization.Charting.Chart)(target));
                return;

            case 14:
                this.PoKonwersji = ((System.Windows.Controls.DataVisualization.Charting.Chart)(target));
                return;
            }
            this._contentLoaded = true;
        }
Пример #45
0
        void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target)
        {
            switch (connectionId)
            {
            case 1:
                this.label = ((System.Windows.Controls.Label)(target));
                return;

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

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

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

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

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

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

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

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

            #line default
            #line hidden
                return;

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

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

            case 11:
                this.label_Copy4 = ((System.Windows.Controls.Label)(target));
                return;

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

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

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

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

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

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

            case 18:
                this.option4StrikeWeightTextBox = ((System.Windows.Controls.TextBox)(target));
                return;

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

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

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

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

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

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

            case 25:
                this.option5TypeTextBox = ((System.Windows.Controls.TextBox)(target));
                return;

            case 26:
                this.option6TypeTextBox = ((System.Windows.Controls.TextBox)(target));
                return;

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

            case 28:
                this.option2CallPriceTextBox = ((System.Windows.Controls.TextBox)(target));
                return;

            case 29:
                this.option3CallPriceTextBox = ((System.Windows.Controls.TextBox)(target));
                return;

            case 30:
                this.option4CallPriceTextBox = ((System.Windows.Controls.TextBox)(target));
                return;

            case 31:
                this.option6CallPriceTextBox = ((System.Windows.Controls.TextBox)(target));
                return;

            case 32:
                this.option5CallPriceTextBox = ((System.Windows.Controls.TextBox)(target));
                return;

            case 33:
                this.option1PutPriceTextBox = ((System.Windows.Controls.TextBox)(target));
                return;

            case 34:
                this.option2PutPriceTextBox = ((System.Windows.Controls.TextBox)(target));
                return;

            case 35:
                this.option3PutPriceTextBox = ((System.Windows.Controls.TextBox)(target));
                return;

            case 36:
                this.option4PutPriceTextBox = ((System.Windows.Controls.TextBox)(target));
                return;

            case 37:
                this.option6PutPriceTextBox = ((System.Windows.Controls.TextBox)(target));
                return;

            case 38:
                this.option5PutPriceTextBox = ((System.Windows.Controls.TextBox)(target));
                return;

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

            case 40:
                this.tabControl = ((System.Windows.Controls.TabControl)(target));
                return;

            case 41:
                this.valuationTabItem = ((System.Windows.Controls.TabItem)(target));
                return;

            case 42:
                this.displayAssetSimsCheckBox = ((System.Windows.Controls.CheckBox)(target));
                return;

            case 43:
                this.displayOptionPayoffCheckbox = ((System.Windows.Controls.CheckBox)(target));
                return;

            case 44:
                this.label_Copy7 = ((System.Windows.Controls.Label)(target));
                return;

            case 45:
                this.numberOfSimsTextBox = ((System.Windows.Controls.TextBox)(target));
                return;

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

            case 47:
                this.numberOfStepsTextBox = ((System.Windows.Controls.TextBox)(target));
                return;

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

            case 49:
                this.durationTextBox = ((System.Windows.Controls.TextBox)(target));
                return;

            case 50:
                this.label_Copy10 = ((System.Windows.Controls.Label)(target));
                return;

            case 51:
                this.timeStepTextBox = ((System.Windows.Controls.TextBox)(target));
                return;

            case 52:
                this.tabControl1 = ((System.Windows.Controls.TabControl)(target));
                return;

            case 53:
                this.gridTabItem = ((System.Windows.Controls.TabItem)(target));
                return;

            case 54:
                this.valuationDataGrid = ((System.Windows.Controls.DataGrid)(target));
                return;

            case 55:
                this.graphTabItem = ((System.Windows.Controls.TabItem)(target));
                return;

            case 56:
                this.valuationChart = ((System.Windows.Controls.DataVisualization.Charting.Chart)(target));
                return;

            case 57:
                this.convergenceTabItem = ((System.Windows.Controls.TabItem)(target));
                return;

            case 58:
                this.ErrorTabItem = ((System.Windows.Controls.TabItem)(target));
                return;
            }
            this._contentLoaded = true;
        }
        void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target)
        {
            switch (connectionId)
            {
            case 1:
                this.Main = ((ProgramTreningowyWPF.MainWindow)(target));
                return;

            case 2:
                this.up_BeginStoryboard = ((System.Windows.Media.Animation.BeginStoryboard)(target));
                return;

            case 3:
                this.down_BeginStoryboard = ((System.Windows.Media.Animation.BeginStoryboard)(target));
                return;

            case 4:
                this.up1_BeginStoryboard = ((System.Windows.Media.Animation.BeginStoryboard)(target));
                return;

            case 5:
                this.down1_BeginStoryboard = ((System.Windows.Media.Animation.BeginStoryboard)(target));
                return;

            case 6:
                this.Druga = ((System.Windows.Controls.ColumnDefinition)(target));
                return;

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

            case 8:
                this.MainCalendar = ((System.Windows.Controls.Calendar)(target));

            #line 82 "..\..\MainWindow.xaml"
                this.MainCalendar.SelectedDatesChanged += new System.EventHandler <System.Windows.Controls.SelectionChangedEventArgs>(this.MainCalendar_SelectedDatesChanged);

            #line default
            #line hidden
                return;

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

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

            #line default
            #line hidden
                return;

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

            #line 104 "..\..\MainWindow.xaml"
                this.buttonNieTrening.Click += new System.Windows.RoutedEventHandler(this.buttonNieTrening_Click);

            #line default
            #line hidden
                return;

            case 11:
                this.ChangingStacPanel = ((System.Windows.Controls.StackPanel)(target));
                return;

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

            case 13:
                this.dataGrid = ((System.Windows.Controls.DataGrid)(target));
                return;

            case 14:
                this.wagaChart = ((System.Windows.Controls.DataVisualization.Charting.Chart)(target));
                return;
            }
            this._contentLoaded = true;
        }
Пример #47
0
        void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target)
        {
            switch (connectionId)
            {
            case 1:

            #line 11 "..\..\..\Custom\Dashboard.xaml"
                ((Project_Transport.Dashboard)(target)).Loaded += new System.Windows.RoutedEventHandler(this.Window_Loaded);

            #line default
            #line hidden
                return;

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

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

            case 4:
                this.tableView = ((System.Windows.Documents.FlowDocument)(target));
                return;

            case 5:
                this.tableView1 = ((System.Windows.Documents.FlowDocument)(target));
                return;

            case 6:
                this.sticky = ((System.Windows.Controls.StackPanel)(target));
                return;

            case 7:
                this.rtbox = ((System.Windows.Controls.RichTextBox)(target));

            #line 62 "..\..\..\Custom\Dashboard.xaml"
                this.rtbox.GotFocus += new System.Windows.RoutedEventHandler(this.rtbox_GotFocus);

            #line default
            #line hidden

            #line 62 "..\..\..\Custom\Dashboard.xaml"
                this.rtbox.LostFocus += new System.Windows.RoutedEventHandler(this.rtbox_LostFocus);

            #line default
            #line hidden
                return;

            case 8:
                this.columnChart = ((System.Windows.Controls.DataVisualization.Charting.Chart)(target));
                return;

            case 9:
                this.areaChart = ((System.Windows.Controls.DataVisualization.Charting.Chart)(target));
                return;

            case 10:

            #line 97 "..\..\..\Custom\Dashboard.xaml"
                ((System.Windows.Documents.Hyperlink)(target)).Click += new System.Windows.RoutedEventHandler(this.Diesel_Payment_Click);

            #line default
            #line hidden
                return;

            case 11:

            #line 115 "..\..\..\Custom\Dashboard.xaml"
                ((System.Windows.Documents.Hyperlink)(target)).Click += new System.Windows.RoutedEventHandler(this.Lpg_trip_Click);

            #line default
            #line hidden
                return;

            case 12:

            #line 132 "..\..\..\Custom\Dashboard.xaml"
                ((System.Windows.Documents.Hyperlink)(target)).Click += new System.Windows.RoutedEventHandler(this.Load_Trailer_Click);

            #line default
            #line hidden
                return;

            case 13:

            #line 149 "..\..\..\Custom\Dashboard.xaml"
                ((System.Windows.Documents.Hyperlink)(target)).Click += new System.Windows.RoutedEventHandler(this.Lpg_Payment_Click);

            #line default
            #line hidden
                return;

            case 14:

            #line 162 "..\..\..\Custom\Dashboard.xaml"
                ((System.Windows.Documents.Hyperlink)(target)).Click += new System.Windows.RoutedEventHandler(this.Load_Payment_Click);

            #line default
            #line hidden
                return;

            case 15:

            #line 175 "..\..\..\Custom\Dashboard.xaml"
                ((System.Windows.Documents.Hyperlink)(target)).Click += new System.Windows.RoutedEventHandler(this.Profit_Click);

            #line default
            #line hidden
                return;

            case 16:

            #line 177 "..\..\..\Custom\Dashboard.xaml"
                ((System.Windows.Documents.Hyperlink)(target)).Click += new System.Windows.RoutedEventHandler(this.Poweredby_Clicked);

            #line default
            #line hidden
                return;
            }
            this._contentLoaded = true;
        }
Пример #48
0
        void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target)
        {
            switch (connectionId)
            {
            case 1:
                this.label = ((System.Windows.Controls.Label)(target));
                return;

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

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

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

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

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

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

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

            #line 18 "..\..\Window1.xaml"
                this.btnSearch.Click += new System.Windows.RoutedEventHandler(this.Search);

            #line default
            #line hidden
                return;

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

            #line 19 "..\..\Window1.xaml"
                this.lstSearch.SelectionChanged += new System.Windows.Controls.SelectionChangedEventHandler(this.Select);

            #line default
            #line hidden
                return;

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

            #line 20 "..\..\Window1.xaml"
                this.lblSignout.MouseDoubleClick += new System.Windows.Input.MouseButtonEventHandler(this.SignOut);

            #line default
            #line hidden
                return;

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

            case 12:
                this.lineChart = ((System.Windows.Controls.DataVisualization.Charting.Chart)(target));
                return;

            case 13:
                this.lnsStock1 = ((System.Windows.Controls.DataVisualization.Charting.LineSeries)(target));
                return;

            case 14:
                this.lnstock2 = ((System.Windows.Controls.DataVisualization.Charting.LineSeries)(target));
                return;

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

            #line 38 "..\..\Window1.xaml"
                this.btnpopulate.Click += new System.Windows.RoutedEventHandler(this.Populate);

            #line default
            #line hidden
                return;
            }
            this._contentLoaded = true;
        }
Пример #49
0
        void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target)
        {
            switch (connectionId)
            {
            case 1:
                this.HomePageButton = ((System.Windows.Controls.Button)(target));

            #line 55 "..\..\..\PatientPages\PatientBlogPage.xaml"
                this.HomePageButton.Click += new System.Windows.RoutedEventHandler(this.HomePageButton_Click);

            #line default
            #line hidden
                return;

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

            #line 58 "..\..\..\PatientPages\PatientBlogPage.xaml"
                this.HomePageText.MouseLeftButtonDown += new System.Windows.Input.MouseButtonEventHandler(this.HomePageButton_Click);

            #line default
            #line hidden
                return;

            case 3:

            #line 60 "..\..\..\PatientPages\PatientBlogPage.xaml"
                ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.AccountButton_Click);

            #line default
            #line hidden
                return;

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

            #line 63 "..\..\..\PatientPages\PatientBlogPage.xaml"
                this.AccountText1.MouseLeftButtonDown += new System.Windows.Input.MouseButtonEventHandler(this.AccountButton_Click);

            #line default
            #line hidden
                return;

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

            #line 67 "..\..\..\PatientPages\PatientBlogPage.xaml"
                this.TherapyButton.Click += new System.Windows.RoutedEventHandler(this.TherapyButton_Click);

            #line default
            #line hidden
                return;

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

            #line 70 "..\..\..\PatientPages\PatientBlogPage.xaml"
                this.TherapyText.MouseLeftButtonDown += new System.Windows.Input.MouseButtonEventHandler(this.TherapyButton_Click);

            #line default
            #line hidden
                return;

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

            #line 72 "..\..\..\PatientPages\PatientBlogPage.xaml"
                this.PatientChartButton.Click += new System.Windows.RoutedEventHandler(this.PatientChartButton_Click);

            #line default
            #line hidden
                return;

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

            #line 75 "..\..\..\PatientPages\PatientBlogPage.xaml"
                this.PatientChartText.MouseLeftButtonDown += new System.Windows.Input.MouseButtonEventHandler(this.PatientChartButton_Click);

            #line default
            #line hidden
                return;

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

            #line 77 "..\..\..\PatientPages\PatientBlogPage.xaml"
                this.BlogButton.Click += new System.Windows.RoutedEventHandler(this.BlogButton_Click);

            #line default
            #line hidden
                return;

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

            #line 80 "..\..\..\PatientPages\PatientBlogPage.xaml"
                this.BlogText.MouseLeftButtonDown += new System.Windows.Input.MouseButtonEventHandler(this.BlogButton_Click);

            #line default
            #line hidden
                return;

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

            #line 83 "..\..\..\PatientPages\PatientBlogPage.xaml"
                this.DoctorsButton.Click += new System.Windows.RoutedEventHandler(this.DoctorsButton_Click);

            #line default
            #line hidden
                return;

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

            #line 86 "..\..\..\PatientPages\PatientBlogPage.xaml"
                this.DoctorsText.MouseLeftButtonDown += new System.Windows.Input.MouseButtonEventHandler(this.DoctorsButton_Click);

            #line default
            #line hidden
                return;

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

            #line 93 "..\..\..\PatientPages\PatientBlogPage.xaml"
                this.NewExamButton.Click += new System.Windows.RoutedEventHandler(this.NewExamButton_Click);

            #line default
            #line hidden
                return;

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

            #line 96 "..\..\..\PatientPages\PatientBlogPage.xaml"
                this.NewExamText.MouseLeftButtonDown += new System.Windows.Input.MouseButtonEventHandler(this.NewExamButton_Click);

            #line default
            #line hidden
                return;

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

            #line 98 "..\..\..\PatientPages\PatientBlogPage.xaml"
                this.ScheduledExamsButton.Click += new System.Windows.RoutedEventHandler(this.ScheduledExamsButton_Click);

            #line default
            #line hidden
                return;

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

            #line 101 "..\..\..\PatientPages\PatientBlogPage.xaml"
                this.ScheduledExamsText.MouseLeftButtonDown += new System.Windows.Input.MouseButtonEventHandler(this.ScheduledExamsButton_Click);

            #line default
            #line hidden
                return;

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

            #line 103 "..\..\..\PatientPages\PatientBlogPage.xaml"
                this.EmergencyExamButton.Click += new System.Windows.RoutedEventHandler(this.EmergencyExamButton_Click);

            #line default
            #line hidden
                return;

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

            #line 106 "..\..\..\PatientPages\PatientBlogPage.xaml"
                this.EmergencyExamText.MouseLeftButtonDown += new System.Windows.Input.MouseButtonEventHandler(this.EmergencyExamButton_Click);

            #line default
            #line hidden
                return;

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

            #line 130 "..\..\..\PatientPages\PatientBlogPage.xaml"
                this.RateDoctorButton2.Click += new System.Windows.RoutedEventHandler(this.RateDoctorButton_Click);

            #line default
            #line hidden
                return;

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

            #line 133 "..\..\..\PatientPages\PatientBlogPage.xaml"
                this.RateDoctorText2.MouseLeftButtonDown += new System.Windows.Input.MouseButtonEventHandler(this.RateDoctorButton_Click);

            #line default
            #line hidden
                return;

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

            #line 135 "..\..\..\PatientPages\PatientBlogPage.xaml"
                this.FeedbackButton.Click += new System.Windows.RoutedEventHandler(this.FeedbackButton_Click);

            #line default
            #line hidden
                return;

            case 22:
                this.FeedbackText = ((System.Windows.Controls.TextBlock)(target));

            #line 138 "..\..\..\PatientPages\PatientBlogPage.xaml"
                this.FeedbackText.MouseLeftButtonDown += new System.Windows.Input.MouseButtonEventHandler(this.FeedbackButton_Click);

            #line default
            #line hidden
                return;

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

            #line 143 "..\..\..\PatientPages\PatientBlogPage.xaml"
                this.LogoutButton.Click += new System.Windows.RoutedEventHandler(this.LogoutButton_Click);

            #line default
            #line hidden
                return;

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

            #line 146 "..\..\..\PatientPages\PatientBlogPage.xaml"
                this.LogoutText.MouseLeftButtonDown += new System.Windows.Input.MouseButtonEventHandler(this.LogoutButton_Click);

            #line default
            #line hidden
                return;

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

            #line 148 "..\..\..\PatientPages\PatientBlogPage.xaml"
                this.ExitButton.Click += new System.Windows.RoutedEventHandler(this.ExitButton_Click);

            #line default
            #line hidden
                return;

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

            #line 151 "..\..\..\PatientPages\PatientBlogPage.xaml"
                this.ExitText.MouseLeftButtonDown += new System.Windows.Input.MouseButtonEventHandler(this.ExitButton_Click);

            #line default
            #line hidden
                return;

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

            #line 207 "..\..\..\PatientPages\PatientBlogPage.xaml"
                this.menu.Click += new System.Windows.RoutedEventHandler(this.displayMenu_Click);

            #line default
            #line hidden
                return;

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

            #line 211 "..\..\..\PatientPages\PatientBlogPage.xaml"
                this.bell.Click += new System.Windows.RoutedEventHandler(this.bell_Click);

            #line default
            #line hidden
                return;

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

            #line 215 "..\..\..\PatientPages\PatientBlogPage.xaml"
                this.gear.Click += new System.Windows.RoutedEventHandler(this.displayOptions_Click);

            #line default
            #line hidden
                return;

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

            #line 235 "..\..\..\PatientPages\PatientBlogPage.xaml"
                this.Back.Click += new System.Windows.RoutedEventHandler(this.Back_Click);

            #line default
            #line hidden
                return;

            case 31:
                this.chtSummary = ((System.Windows.Controls.DataVisualization.Charting.Chart)(target));
                return;
            }
            this._contentLoaded = true;
        }
Пример #50
0
        void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target)
        {
            switch (connectionId)
            {
            case 1:

            #line 8 "..\..\..\Windows\MonitoringWindow.xaml"
                ((Client.MonitoringWindow)(target)).Closed += new System.EventHandler(this.Window_Closed);

            #line default
            #line hidden
                return;

            case 2:
                this.lineChart = ((System.Windows.Controls.DataVisualization.Charting.Chart)(target));
                return;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

            case 17:
                this.label8 = ((System.Windows.Controls.Label)(target));
                return;
            }
            this._contentLoaded = true;
        }
Пример #51
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.chartView = ((System.Windows.Controls.DataVisualization.Charting.Chart)(target));
                return;

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

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

            case 5:
                this.tableView = ((System.Windows.Controls.DataGrid)(target));

            #line 305 "..\..\..\..\XAML Components\Table\TableView.xaml"
                this.tableView.AutoGeneratingColumn += new System.EventHandler <System.Windows.Controls.DataGridAutoGeneratingColumnEventArgs>(this.OnAutoGeneratingColumn);

            #line default
            #line hidden
                return;

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

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

            #line 328 "..\..\..\..\XAML Components\Table\TableView.xaml"
                this.daysNumber.SelectionChanged += new System.Windows.Controls.SelectionChangedEventHandler(this.daysNumber_SelectionChanged);

            #line default
            #line hidden
                return;

            case 8:
                this.expanderFilter = ((System.Windows.Controls.Expander)(target));

            #line 330 "..\..\..\..\XAML Components\Table\TableView.xaml"
                this.expanderFilter.PreviewMouseLeftButtonUp += new System.Windows.Input.MouseButtonEventHandler(this.Expander_PreviewMouseLeftButtonUp);

            #line default
            #line hidden
                return;

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

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

            case 11:

            #line 340 "..\..\..\..\XAML Components\Table\TableView.xaml"
                ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.Filter_Click);

            #line default
            #line hidden
                return;

            case 12:

            #line 347 "..\..\..\..\XAML Components\Table\TableView.xaml"
                ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.Reset_Click);

            #line default
            #line hidden
                return;

            case 13:
                this.expanderParameters = ((System.Windows.Controls.Expander)(target));

            #line 357 "..\..\..\..\XAML Components\Table\TableView.xaml"
                this.expanderParameters.PreviewMouseLeftButtonUp += new System.Windows.Input.MouseButtonEventHandler(this.Expander_PreviewMouseParameter);

            #line default
            #line hidden
                return;

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

            case 15:

            #line 365 "..\..\..\..\XAML Components\Table\TableView.xaml"
                ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.Graph_View_Click);

            #line default
            #line hidden
                return;

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

            case 17:

            #line 379 "..\..\..\..\XAML Components\Table\TableView.xaml"
                ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.Delete_Click);

            #line default
            #line hidden
                return;
            }
            this._contentLoaded = true;
        }
Пример #52
0
        void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target)
        {
            switch (connectionId)
            {
            case 1:

            #line 5 "..\..\RunWindow.xaml"
                ((ExchangeClient.RunWindow)(target)).Loaded += new System.Windows.RoutedEventHandler(this.Window_Loaded);

            #line default
            #line hidden

            #line 5 "..\..\RunWindow.xaml"
                ((ExchangeClient.RunWindow)(target)).Closed += new System.EventHandler(this.Window_Closed);

            #line default
            #line hidden
                return;

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

            case 3:
                this.lstEvents = ((System.Windows.Controls.ListBox)(target));
                return;

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

            #line 21 "..\..\RunWindow.xaml"
                this.btnAdd.Click += new System.Windows.RoutedEventHandler(this.btnAdd_Click);

            #line default
            #line hidden
                return;

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

            #line 22 "..\..\RunWindow.xaml"
                this.btnEdit.Click += new System.Windows.RoutedEventHandler(this.btnEdit_Click);

            #line default
            #line hidden
                return;

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

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

            #line default
            #line hidden
                return;

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

            #line 36 "..\..\RunWindow.xaml"
                this.cmbUpdate.SelectionChanged += new System.Windows.Controls.SelectionChangedEventHandler(this.cmbUpdate_SelectionChanged);

            #line default
            #line hidden
                return;

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

            #line 43 "..\..\RunWindow.xaml"
                this.btnRes.Click += new System.Windows.RoutedEventHandler(this.btnRes_Click);

            #line default
            #line hidden
                return;

            case 9:
                this.AreaSeries = ((System.Windows.Controls.DataVisualization.Charting.Chart)(target));
                return;
            }
            this._contentLoaded = true;
        }
Пример #53
0
        void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target)
        {
            switch (connectionId)
            {
            case 1:
                this.listCurrency = ((System.Windows.Controls.ListBox)(target));
                return;

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

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

            #line default
            #line hidden
                return;

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

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

            #line default
            #line hidden
                return;

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

            #line 21 "..\..\MainWindow.xaml"
                this.radioButton3.Click += new System.Windows.RoutedEventHandler(this.radioButton3_Click);

            #line default
            #line hidden
                return;

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

            #line 22 "..\..\MainWindow.xaml"
                this.radioButton4.Click += new System.Windows.RoutedEventHandler(this.radioButton4_Click);

            #line default
            #line hidden
                return;

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

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

            #line default
            #line hidden
                return;

            case 7:
                this.myCalendar = ((System.Windows.Controls.Calendar)(target));

            #line 24 "..\..\MainWindow.xaml"
                this.myCalendar.SelectedDatesChanged += new System.EventHandler <System.Windows.Controls.SelectionChangedEventArgs>(this.Calendar_SelectedDatesChanged);

            #line default
            #line hidden

            #line 24 "..\..\MainWindow.xaml"
                this.myCalendar.PreviewMouseUp += new System.Windows.Input.MouseButtonEventHandler(this.myCalendar_PreviewMouseUp);

            #line default
            #line hidden
                return;

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

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

            #line default
            #line hidden
                return;

            case 9:
                this.myChart = ((System.Windows.Controls.DataVisualization.Charting.Chart)(target));
                return;
            }
            this._contentLoaded = true;
        }
Пример #54
0
        void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target)
        {
            switch (connectionId)
            {
            case 1:
                this.mainWD = ((SHIV_PhongCachAm.MainWindow)(target));

            #line 10 "..\..\MainWindow.xaml"
                this.mainWD.Closing += new System.ComponentModel.CancelEventHandler(this.mainWD_Closing);

            #line default
            #line hidden
                return;

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

            #line 139 "..\..\MainWindow.xaml"
                this.lblDatetime.PreviewMouseDown += new System.Windows.Input.MouseButtonEventHandler(this.lblDatetime_PreviewMouseDown);

            #line default
            #line hidden
                return;

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

            #line 142 "..\..\MainWindow.xaml"
                this.lblLanguage.PreviewMouseDown += new System.Windows.Input.MouseButtonEventHandler(this.lblLanguage_PreviewMouseDown);

            #line default
            #line hidden
                return;

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

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

            #line 200 "..\..\MainWindow.xaml"
                this.lblMaOrder.PreviewMouseDown += new System.Windows.Input.MouseButtonEventHandler(this.lblMaOrder_PreviewMouseDown);

            #line default
            #line hidden
                return;

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

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

            #line 222 "..\..\MainWindow.xaml"
                this.lblSTTSanpham.DataContextChanged += new System.Windows.DependencyPropertyChangedEventHandler(this.lblSTTSanpham_DataContextChanged);

            #line default
            #line hidden

            #line 223 "..\..\MainWindow.xaml"
                this.lblSTTSanpham.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.lblSTTSanpham_MouseDown);

            #line default
            #line hidden
                return;

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

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

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

            case 11:
                this.lblTcVongquay = ((System.Windows.Controls.Label)(target));
                return;

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

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

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

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

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

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

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

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

            case 20:
                this.lblTcDongdien = ((System.Windows.Controls.Label)(target));
                return;

            case 21:
                this.lblDongdienFwdMax = ((System.Windows.Controls.Label)(target));
                return;

            case 22:
                this.lblDongdienBwdMax = ((System.Windows.Controls.Label)(target));
                return;

            case 23:
                this.lblDongdienLech = ((System.Windows.Controls.Label)(target));
                return;

            case 24:
                this.lblOKDongdien = ((System.Windows.Controls.Label)(target));
                return;

            case 25:
                this.lblNGDongdien = ((System.Windows.Controls.Label)(target));
                return;

            case 26:
                this.lblTCNhapluc = ((System.Windows.Controls.Label)(target));
                return;

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

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

            case 29:
                this.lblNhaplucLech = ((System.Windows.Controls.Label)(target));
                return;

            case 30:
                this.lblOKNhapluc = ((System.Windows.Controls.Label)(target));
                return;

            case 31:
                this.lblNGNhapluc = ((System.Windows.Controls.Label)(target));
                return;

            case 32:
                this.lblTcDorung = ((System.Windows.Controls.Label)(target));
                return;

            case 33:
                this.lblDorungFwdMax = ((System.Windows.Controls.Label)(target));
                return;

            case 34:
                this.lblDorungBwdMax = ((System.Windows.Controls.Label)(target));
                return;

            case 35:
                this.lblDorungLech = ((System.Windows.Controls.Label)(target));
                return;

            case 36:
                this.lblOKDorung = ((System.Windows.Controls.Label)(target));
                return;

            case 37:
                this.lblNGDorung = ((System.Windows.Controls.Label)(target));
                return;

            case 38:
                this.lblTcTiengon = ((System.Windows.Controls.Label)(target));
                return;

            case 39:
                this.lblTiengonFwdMax = ((System.Windows.Controls.Label)(target));
                return;

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

            case 41:
                this.lblTiengonLech = ((System.Windows.Controls.Label)(target));
                return;

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

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

            case 44:
                this.lblAmsacThuan = ((System.Windows.Controls.Label)(target));
                return;

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

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

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

            case 48:
                this.LineChart1 = ((System.Windows.Controls.DataVisualization.Charting.Chart)(target));
                return;

            case 49:
                this.LineChartChild = ((System.Windows.Controls.DataVisualization.Charting.LineSeries)(target));
                return;

            case 50:
                this.btnF1 = ((System.Windows.Controls.Label)(target));

            #line 553 "..\..\MainWindow.xaml"
                this.btnF1.PreviewMouseDown += new System.Windows.Input.MouseButtonEventHandler(this.btnF1_PreviewMouseDown);

            #line default
            #line hidden
                return;

            case 51:
                this.btnF3 = ((System.Windows.Controls.Label)(target));

            #line 556 "..\..\MainWindow.xaml"
                this.btnF3.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.btnF3_MouseDown);

            #line default
            #line hidden
                return;

            case 52:

            #line 562 "..\..\MainWindow.xaml"
                ((System.Windows.Controls.Label)(target)).PreviewMouseDown += new System.Windows.Input.MouseButtonEventHandler(this.LabelF9_PreviewMouseDown);

            #line default
            #line hidden
                return;
            }
            this._contentLoaded = true;
        }
Пример #55
0
        void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target)
        {
            switch (connectionId)
            {
            case 1:
                this.scroll2 = ((System.Windows.Controls.ScrollViewer)(target));
                return;

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

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

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

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

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

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

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

            #line 33 "..\..\..\Views\New_k_record_1.xaml"
                this.timeok.Click += new System.Windows.RoutedEventHandler(this.timeok_Click);

            #line default
            #line hidden
                return;

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

            #line 34 "..\..\..\Views\New_k_record_1.xaml"
                this.scoreok.Click += new System.Windows.RoutedEventHandler(this.scoreok_Click);

            #line default
            #line hidden
                return;

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

            case 11:
                this.timedate2 = ((System.Windows.Controls.Label)(target));
                return;

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

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

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

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

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

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

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

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

            case 20:
                this.scoreline3 = ((System.Windows.Controls.Label)(target));
                return;

            case 21:
                this.timedate3 = ((System.Windows.Controls.Label)(target));
                return;

            case 22:
                this.timeChart = ((System.Windows.Controls.DataVisualization.Charting.Chart)(target));
                return;

            case 23:
                this.scoreChart = ((System.Windows.Controls.DataVisualization.Charting.Chart)(target));
                return;
            }
            this._contentLoaded = true;
        }
Пример #56
0
        void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target)
        {
            switch (connectionId)
            {
            case 1:
                this.stackPanel1 = ((System.Windows.Controls.Grid)(target));
                return;

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

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

            #line default
            #line hidden
                return;

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

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

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

            #line 21 "..\..\..\MainWindow.xaml"
                this.save_btn.Click += new System.Windows.RoutedEventHandler(this.save_btn_Click);

            #line default
            #line hidden
                return;

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

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

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

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

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

            #line default
            #line hidden
                return;

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

            #line 27 "..\..\..\MainWindow.xaml"
                this.progressBar.ValueChanged += new System.Windows.RoutedPropertyChangedEventHandler <double>(this.progressBar_ValueChanged);

            #line default
            #line hidden
                return;

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

            case 12:
                this.rawdata_txt = ((System.Windows.Controls.RichTextBox)(target));
                return;

            case 13:
                this.richTextBox1 = ((System.Windows.Controls.RichTextBox)(target));
                return;

            case 14:
                this.chart1 = ((System.Windows.Controls.DataVisualization.Charting.Chart)(target));
                return;
            }
            this._contentLoaded = true;
        }
        void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target)
        {
            switch (connectionId)
            {
            case 1:

            #line 12 "..\..\Istatistikler.xaml"
                ((System.Windows.Controls.MenuItem)(target)).Click += new System.Windows.RoutedEventHandler(this.sms_click);

            #line default
            #line hidden
                return;

            case 2:

            #line 13 "..\..\Istatistikler.xaml"
                ((System.Windows.Controls.MenuItem)(target)).Click += new System.Windows.RoutedEventHandler(this.Kampanya_click);

            #line default
            #line hidden
                return;

            case 3:

            #line 15 "..\..\Istatistikler.xaml"
                ((System.Windows.Controls.MenuItem)(target)).Click += new System.Windows.RoutedEventHandler(this.Musteri_click);

            #line default
            #line hidden
                return;

            case 4:

            #line 16 "..\..\Istatistikler.xaml"
                ((System.Windows.Controls.MenuItem)(target)).Click += new System.Windows.RoutedEventHandler(this.Islem_click);

            #line default
            #line hidden
                return;

            case 5:
                this.ColumnChart1 = ((System.Windows.Controls.DataVisualization.Charting.Chart)(target));
                return;

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

            #line 24 "..\..\Istatistikler.xaml"
                this.olcut_combobox.SelectionChanged += new System.Windows.Controls.SelectionChangedEventHandler(this.olcut_degisti);

            #line default
            #line hidden
                return;

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

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

            #line 26 "..\..\Istatistikler.xaml"
                this.Goster.Click += new System.Windows.RoutedEventHandler(this.Goster_Click);

            #line default
            #line hidden
                return;

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

            #line 32 "..\..\Istatistikler.xaml"
                this.mcctablo.SelectionChanged += new System.Windows.Controls.SelectionChangedEventHandler(this.mcctablo_Degisti);

            #line default
            #line hidden
                return;

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

            #line 33 "..\..\Istatistikler.xaml"
                this.kisiler_combobox.SelectionChanged += new System.Windows.Controls.SelectionChangedEventHandler(this.kisilerCombobox_Degisti);

            #line default
            #line hidden
                return;

            case 11:
                this.Tarih_Aralik = ((System.Windows.Controls.CheckBox)(target));

            #line 34 "..\..\Istatistikler.xaml"
                this.Tarih_Aralik.Checked += new System.Windows.RoutedEventHandler(this.Tarih_Acik);

            #line default
            #line hidden

            #line 34 "..\..\Istatistikler.xaml"
                this.Tarih_Aralik.Unchecked += new System.Windows.RoutedEventHandler(this.Tarih_kapali);

            #line default
            #line hidden
                return;

            case 12:
                this.TarihBaslangic = ((System.Windows.Controls.DatePicker)(target));

            #line 35 "..\..\Istatistikler.xaml"
                this.TarihBaslangic.SelectedDateChanged += new System.EventHandler <System.Windows.Controls.SelectionChangedEventArgs>(this.TarihBaslangic_Degisti);

            #line default
            #line hidden
                return;

            case 13:
                this.TarihBitis = ((System.Windows.Controls.DatePicker)(target));

            #line 36 "..\..\Istatistikler.xaml"
                this.TarihBitis.SelectedDateChanged += new System.EventHandler <System.Windows.Controls.SelectionChangedEventArgs>(this.TarihBitis_Degisti);

            #line default
            #line hidden
                return;

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

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

            #line 38 "..\..\Istatistikler.xaml"
                this.Tutar_Aralik.Checked += new System.Windows.RoutedEventHandler(this.Tutar_acik);

            #line default
            #line hidden

            #line 38 "..\..\Istatistikler.xaml"
                this.Tutar_Aralik.Unchecked += new System.Windows.RoutedEventHandler(this.Tutar_kapali);

            #line default
            #line hidden
                return;

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

            #line 39 "..\..\Istatistikler.xaml"
                this.TutarMin.LostFocus += new System.Windows.RoutedEventHandler(this.TutarMin_Birakti);

            #line default
            #line hidden
                return;

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

            #line 40 "..\..\Istatistikler.xaml"
                this.TutarMax.LostFocus += new System.Windows.RoutedEventHandler(this.TutarMax_Birakti);

            #line default
            #line hidden
                return;

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

            case 19:
                this.Olcut_kontrol = ((System.Windows.Controls.Image)(target));
                return;

            case 20:
                this.mcc_kontrol = ((System.Windows.Controls.Image)(target));
                return;

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

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

            case 23:
                this.tutar_kontrol = ((System.Windows.Controls.Image)(target));
                return;

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

            case 25:
                this.tutar_wrong = ((System.Windows.Controls.TextBlock)(target));
                return;

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

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

            case 28:
                this.Kar = ((System.Windows.Controls.TextBlock)(target));
                return;
            }
            this._contentLoaded = true;
        }
Пример #58
0
        void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target)
        {
            switch (connectionId)
            {
            case 1:
                this.company_name = ((System.Windows.Controls.TextBlock)(target));
                return;

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

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

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

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

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

            case 7:

            #line 104 "..\..\..\pages\home.xaml"
                ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.company_Search_Click);

            #line default
            #line hidden
                return;

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

            case 9:

            #line 109 "..\..\..\pages\home.xaml"
                ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.order_Search_Click);

            #line default
            #line hidden
                return;

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

            case 11:

            #line 114 "..\..\..\pages\home.xaml"
                ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.mould_Search_Click);

            #line default
            #line hidden
                return;

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

            case 13:

            #line 119 "..\..\..\pages\home.xaml"
                ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.logistics_Search_Click);

            #line default
            #line hidden
                return;

            case 14:
                this.scrollViewer1 = ((System.Windows.Controls.ScrollViewer)(target));
                return;

            case 15:
                this.company_show = ((System.Windows.Controls.StackPanel)(target));
                return;

            case 16:
                this.webBrowser = ((System.Windows.Controls.WebBrowser)(target));

            #line 144 "..\..\..\pages\home.xaml"
                this.webBrowser.Loaded += new System.Windows.RoutedEventHandler(this.MapView_Loaded);

            #line default
            #line hidden

            #line 144 "..\..\..\pages\home.xaml"
                this.webBrowser.LoadCompleted += new System.Windows.Navigation.LoadCompletedEventHandler(this.Mapview_loadedCompleted);

            #line default
            #line hidden
                return;

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

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

            case 19:
                this.chart1_Re_Copy = ((System.Windows.Shapes.Rectangle)(target));
                return;

            case 20:
                this.chart1_Re_Copy1 = ((System.Windows.Shapes.Rectangle)(target));
                return;

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

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

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

            case 24:
                this.chart1_Re_Copy5 = ((System.Windows.Shapes.Rectangle)(target));
                return;

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

            case 26:
                this.chart1_Re_Copy7 = ((System.Windows.Shapes.Rectangle)(target));
                return;

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

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

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

            case 30:
                this.grid_chart2 = ((System.Windows.Controls.Grid)(target));
                return;

            case 31:
                this.chart2_Re = ((System.Windows.Shapes.Rectangle)(target));
                return;

            case 32:
                this.chart2_Re_Copy = ((System.Windows.Shapes.Rectangle)(target));
                return;

            case 33:
                this.chart2_Re_Copy1 = ((System.Windows.Shapes.Rectangle)(target));
                return;

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

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

            case 36:
                this.chart2_Re_Copy4 = ((System.Windows.Shapes.Rectangle)(target));
                return;

            case 37:
                this.chart2_Re_Copy5 = ((System.Windows.Shapes.Rectangle)(target));
                return;

            case 38:
                this.chart2_Re_Copy6 = ((System.Windows.Shapes.Rectangle)(target));
                return;

            case 39:
                this.chart2_Re_Copy7 = ((System.Windows.Shapes.Rectangle)(target));
                return;

            case 40:
                this.chart2_Re_Copy8 = ((System.Windows.Shapes.Rectangle)(target));
                return;

            case 41:
                this.chart2_Re_Copy9 = ((System.Windows.Shapes.Rectangle)(target));
                return;

            case 42:
                this.chart2_Re_Copy10 = ((System.Windows.Shapes.Rectangle)(target));
                return;

            case 43:
                this.ratioGrid = ((System.Windows.Controls.Grid)(target));
                return;

            case 44:
                this.mcChart = ((System.Windows.Controls.DataVisualization.Charting.Chart)(target));
                return;
            }
            this._contentLoaded = true;
        }
Пример #59
0
        void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target)
        {
            switch (connectionId)
            {
            case 1:
                this.TypySygnalowLabel = ((System.Windows.Controls.Label)(target));
                return;

            case 2:
                this.TypySygnalow = ((System.Windows.Controls.ComboBox)(target));

            #line 44 "..\..\MainWindow.xaml"
                this.TypySygnalow.SelectionChanged += new System.Windows.Controls.SelectionChangedEventHandler(this.TypWybrany);

            #line default
            #line hidden
                return;

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

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

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

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

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

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

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

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

            case 11:
                this.WspolczynnikWypelnienia = ((System.Windows.Controls.Label)(target));
                return;

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

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

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

            #line 120 "..\..\MainWindow.xaml"
                this.Sygnal1.Click += new System.Windows.RoutedEventHandler(this.Sygnal1_Click);

            #line default
            #line hidden
                return;

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

            #line 121 "..\..\MainWindow.xaml"
                this.Sygnal2.Click += new System.Windows.RoutedEventHandler(this.Sygnal2_Click);

            #line default
            #line hidden
                return;

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

            case 17:
                this.TypyOperacji = ((System.Windows.Controls.ComboBox)(target));
                return;

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

            #line 142 "..\..\MainWindow.xaml"
                this.WczytajOperacje.Click += new System.Windows.RoutedEventHandler(this.Wczytaj_Click);

            #line default
            #line hidden
                return;

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

            #line 153 "..\..\MainWindow.xaml"
                this.PoliczSplot.Click += new System.Windows.RoutedEventHandler(this.PoliczSplot_Click);

            #line default
            #line hidden
                return;

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

            #line 154 "..\..\MainWindow.xaml"
                this.PoliczKorelacje.Click += new System.Windows.RoutedEventHandler(this.PoliczKorelacje_Click);

            #line default
            #line hidden
                return;

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

            #line 165 "..\..\MainWindow.xaml"
                this.WczytajSygnal1.Click += new System.Windows.RoutedEventHandler(this.WczytajSygnal1_Click);

            #line default
            #line hidden
                return;

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

            #line 166 "..\..\MainWindow.xaml"
                this.ZapiszSygnal1.Click += new System.Windows.RoutedEventHandler(this.ZapiszSygnal1_Click);

            #line default
            #line hidden
                return;

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

            #line 177 "..\..\MainWindow.xaml"
                this.WczytajSygnal2.Click += new System.Windows.RoutedEventHandler(this.WczytajSygnal2_Click);

            #line default
            #line hidden
                return;

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

            #line 178 "..\..\MainWindow.xaml"
                this.ZapiszSygnal2.Click += new System.Windows.RoutedEventHandler(this.ZapiszSygnal2_Click);

            #line default
            #line hidden
                return;

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

            #line 189 "..\..\MainWindow.xaml"
                this.ZapiszWynik.Click += new System.Windows.RoutedEventHandler(this.ZapiszWynik_Click);

            #line default
            #line hidden
                return;

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

            #line 198 "..\..\MainWindow.xaml"
                this.Obliczenia1.Click += new System.Windows.RoutedEventHandler(this.Obliczenia1_Click);

            #line default
            #line hidden
                return;

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

            #line 199 "..\..\MainWindow.xaml"
                this.Obliczenia2.Click += new System.Windows.RoutedEventHandler(this.Obliczenia2_Click);

            #line default
            #line hidden
                return;

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

            #line 200 "..\..\MainWindow.xaml"
                this.Faza1.Click += new System.Windows.RoutedEventHandler(this.Faza1_Click);

            #line default
            #line hidden
                return;

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

            #line 201 "..\..\MainWindow.xaml"
                this.Faza2.Click += new System.Windows.RoutedEventHandler(this.Faza2_Click);

            #line default
            #line hidden
                return;

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

            #line 212 "..\..\MainWindow.xaml"
                this.KonwersjaSygnalow.Click += new System.Windows.RoutedEventHandler(this.KonwersjaSygnalow_Click);

            #line default
            #line hidden
                return;

            case 31:
                this.Konwersja = ((System.Windows.Controls.ComboBox)(target));
                return;

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

            #line 214 "..\..\MainWindow.xaml"
                this.Symulator.Click += new System.Windows.RoutedEventHandler(this.Symulator_Click);

            #line default
            #line hidden
                return;

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

            #line 223 "..\..\MainWindow.xaml"
                this.Filtry.Click += new System.Windows.RoutedEventHandler(this.Filtry_Click);

            #line default
            #line hidden
                return;

            case 34:
                this.Symulacja = ((System.Windows.Controls.ComboBox)(target));
                return;

            case 35:
                this.Chart = ((System.Windows.Controls.DataVisualization.Charting.Chart)(target));
                return;

            case 36:
                this.ChartWynik = ((System.Windows.Controls.DataVisualization.Charting.Chart)(target));
                return;
            }
            this._contentLoaded = true;
        }
Пример #60
0
        void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target)
        {
            switch (connectionId)
            {
            case 1:
                this.lineChart = ((System.Windows.Controls.DataVisualization.Charting.Chart)(target));
                return;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

            case 17:
                this.deleteButton = ((System.Windows.Controls.Button)(target));
                return;
            }
            this._contentLoaded = true;
        }