Inheritance: Control, IUpdateVisualState
コード例 #1
0
 public void InitializeComponent()
 {
     if (_contentLoaded)
     {
         return;
     }
     _contentLoaded = true;
     System.Windows.Application.LoadComponent(this, new System.Uri("/BrokerTools.FundSelector;component/Views/LetsGetStarted.xaml", System.UriKind.Relative));
     this.vm                    = ((BrokerTools.FundSelector.ViewModels.SharedViewModel)(this.FindName("vm")));
     this.LayoutRoot            = ((System.Windows.Controls.Grid)(this.FindName("LayoutRoot")));
     this.tbHeading3LightBlue   = ((System.Windows.Controls.TextBlock)(this.FindName("tbHeading3LightBlue")));
     this.tbHeading3DarkBlue    = ((System.Windows.Controls.TextBlock)(this.FindName("tbHeading3DarkBlue")));
     this.tbNormalTextBlue      = ((System.Windows.Controls.TextBlock)(this.FindName("tbNormalTextBlue")));
     this.spTheAdvisor          = ((System.Windows.Controls.StackPanel)(this.FindName("spTheAdvisor")));
     this.tbAdvisorName         = ((System.Windows.Controls.AutoCompleteBox)(this.FindName("tbAdvisorName")));
     this.spTheInvestor         = ((System.Windows.Controls.StackPanel)(this.FindName("spTheInvestor")));
     this.tbInvestorName        = ((System.Windows.Controls.TextBox)(this.FindName("tbInvestorName")));
     this.tbPortfolioNumber     = ((System.Windows.Controls.TextBox)(this.FindName("tbPortfolioNumber")));
     this.cbInvestorInput3      = ((System.Windows.Controls.ComboBox)(this.FindName("cbInvestorInput3")));
     this.TheInvestment         = ((System.Windows.Controls.StackPanel)(this.FindName("TheInvestment")));
     this.cbTheInvestmentInput1 = ((System.Windows.Controls.ComboBox)(this.FindName("cbTheInvestmentInput1")));
     this.tbTheInvestmentInput2 = ((System.Windows.Controls.TextBox)(this.FindName("tbTheInvestmentInput2")));
     this.tbTheInvestmentInput3 = ((System.Windows.Controls.TextBox)(this.FindName("tbTheInvestmentInput3")));
     this.tbTheInvestmentInput4 = ((System.Windows.Controls.TextBox)(this.FindName("tbTheInvestmentInput4")));
     this.cbTheInvestmentInput5 = ((System.Windows.Controls.ComboBox)(this.FindName("cbTheInvestmentInput5")));
     this.tbTheInvestmentInput6 = ((System.Windows.Controls.TextBox)(this.FindName("tbTheInvestmentInput6")));
     this.tbTheInvestmentInput7 = ((System.Windows.Controls.TextBox)(this.FindName("tbTheInvestmentInput7")));
     this.btnBack               = ((System.Windows.Controls.Button)(this.FindName("btnBack")));
     this.btnNext               = ((System.Windows.Controls.Button)(this.FindName("btnNext")));
 }
コード例 #2
0
 private AutoCompleteBox getinv(AutoCompleteBox a, AutoCompleteBox b)
 {
     var res = new List<AutoCompleteBox>() {txtA, txtB, txtHyp};
     res.Remove(a);
     res.Remove(b);
     return res[0];
 }
コード例 #3
0
ファイル: StockList.g.i.cs プロジェクト: reyukowpf/alpha
        void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target)
        {
            switch (connectionId)
            {
            case 1:

            #line 40 "..\..\..\..\Views\Sales\StockList.xaml"
                ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.Cancel_Click);

            #line default
            #line hidden
                return;

            case 2:
                this.cbLocation = ((System.Windows.Controls.ComboBox)(target));
                return;

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

            case 4:
                this.srcustomer = ((System.Windows.Controls.AutoCompleteBox)(target));
                return;

            case 5:
                this.DGStocklist = ((System.Windows.Controls.DataGrid)(target));
                return;
            }
            this._contentLoaded = true;
        }
コード例 #4
0
        public void Calculate()
        {
            var tx1 = new AutoCompleteBox();
            if (txtA.Text != "" && txtA.IsEnabled) tx1 = txtA;
            else if (txtB.Text != "" && txtB.IsEnabled) tx1 = txtB;
            else if (txtHyp.Text != "" && txtHyp.IsEnabled) tx1 = txtHyp;

            var tx2 = new AutoCompleteBox();
            if (txtA.Text != "" && txtA.IsEnabled && tx1 != txtA) tx2 = txtA;
            else if (txtB.Text != "" && txtB.IsEnabled && tx1 != txtB) tx2 = txtB;
            else if (txtHyp.Text != "" && txtHyp.IsEnabled && tx1 != txtHyp) tx2 = txtHyp;

            Complex tx1c = parser.Calculate(tx1.Text);
            Complex tx2c = parser.Calculate(tx2.Text);

            Complex result = 0;

            if (tx1 == txtHyp)
            {
                result = Functions.Sqrt(tx1c.Square() - tx2c.Square());
            }
            else if (tx2 == txtHyp)
            {
                result = Functions.Sqrt(tx2c.Square() - tx1c.Square());
            }
            else
            {
                result = Functions.Sqrt(tx1c.Square() + tx2c.Square());
            }

            getinv(tx1, tx2).Text = result.ToString();
        }
コード例 #5
0
ファイル: DocumentNo.g.i.cs プロジェクト: reyukowpf/alpha
        void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target)
        {
            switch (connectionId)
            {
            case 1:

            #line 50 "..\..\..\..\Views\Note\DocumentNo.xaml"
                ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.Save_Click);

            #line default
            #line hidden
                return;

            case 2:

            #line 58 "..\..\..\..\Views\Note\DocumentNo.xaml"
                ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.Cancel_Click);

            #line default
            #line hidden
                return;

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

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

            #line 73 "..\..\..\..\Views\Note\DocumentNo.xaml"
                this.txtDocumentNo.TextChanged += new System.Windows.Controls.TextChangedEventHandler(this.TxtDocumentNo_TextChanged);

            #line default
            #line hidden
                return;

            case 5:
                this.date = ((System.Windows.Controls.DatePicker)(target));
                return;

            case 6:
                this.srcustomer = ((System.Windows.Controls.AutoCompleteBox)(target));
                return;

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

            #line 93 "..\..\..\..\Views\Note\DocumentNo.xaml"
                this.txtDescription.TextChanged += new System.Windows.Controls.TextChangedEventHandler(this.TxtDescription_TextChanged);

            #line default
            #line hidden
                return;

            case 8:
                this.kamera = ((System.Windows.Controls.Image)(target));
                return;
            }
            this._contentLoaded = true;
        }
コード例 #6
0
        void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target)
        {
            switch (connectionId)
            {
            case 1:
                this.txtMedicine = ((System.Windows.Controls.AutoCompleteBox)(target));
                return;

            case 2:

            #line 100 "..\..\..\..\Views\StudentSearch.xaml"
                ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.btnSearch);

            #line default
            #line hidden
                return;

            case 3:

            #line 112 "..\..\..\..\Views\StudentSearch.xaml"
                ((System.Windows.Controls.DataGrid)(target)).SelectionChanged += new System.Windows.Controls.SelectionChangedEventHandler(this.DataGrid_SelectionChanged_1);

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

            #line 6 "..\..\..\..\Views\Copy of SelectOutsoleReleaseMaterialWindow.xaml"
                ((MasterSchedule.Views.SelectOutsoleReleaseMaterialWindow)(target)).Loaded += new System.Windows.RoutedEventHandler(this.Window_Loaded);

            #line default
            #line hidden
                return;

            case 2:
                this.txtReportId = ((System.Windows.Controls.AutoCompleteBox)(target));
                return;

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

            #line 20 "..\..\..\..\Views\Copy of SelectOutsoleReleaseMaterialWindow.xaml"
                this.btnOk.Click += new System.Windows.RoutedEventHandler(this.btnOk_Click);

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

            #line 20 "..\..\..\Windows\DeleteVertexWindow.xaml"
                ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.BtnDeleteVertex);

            #line default
            #line hidden
                return;

            case 2:

            #line 21 "..\..\..\Windows\DeleteVertexWindow.xaml"
                ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.Cancel);

            #line default
            #line hidden
                return;

            case 3:
                this.autocomplete = ((System.Windows.Controls.AutoCompleteBox)(target));

            #line 23 "..\..\..\Windows\DeleteVertexWindow.xaml"
                this.autocomplete.MouseEnter += new System.Windows.Input.MouseEventHandler(this.Autocomplete_MouseEnter);

            #line default
            #line hidden
                return;
            }
            this._contentLoaded = true;
        }
コード例 #9
0
        /* Constructor
         *
         * Initializes the window and calls the data provider to initialize
         * airports lists. Creates the autocomplete boxes. In case the connection
         * to the database is unavailable, displays an information and exits.
         */
        public MainWindow()
        {
            SplashScreen splash = new SplashScreen("SplashScreen.png");
            splash.Show(true);
            InitializeComponent();
            try
            {
                EtosPRODataProvider provider = new EtosPRODataProvider(this);
                airportsFullList = provider.GetFullAirportsList();
                airportCodes = provider.GetAirportsCodesList();

                SearchDepartureBox = new AutoCompleteBox();
                SearchDepartureBox.FilterMode = AutoCompleteFilterMode.Contains;
                SearchDepartureBox.ItemsSource = airportsFullList;
                SearchDeparturePanel.Children.Add(SearchDepartureBox);

                SearchArrivalBox = new AutoCompleteBox();
                SearchArrivalBox.FilterMode = AutoCompleteFilterMode.Contains;
                SearchArrivalBox.ItemsSource = airportsFullList;
                SearchArrivalPanel.Children.Add(SearchArrivalBox);
            }
            catch (SqlException e)
            {
                splash.Close(TimeSpan.Zero);
                ErrorWindow error = new ErrorWindow("Could not connect to the server! The application will exit.\n\n" +
                                                    "Verify your connection or contact the developers.");
                error.Show();
                this.Hide();
            }
            splash.Close(TimeSpan.FromSeconds(1));
        }
コード例 #10
0
ファイル: ControlTests1.cs プロジェクト: royosherove/cthru
        public void MinimumPrefixLength_SetToInvalidValue_DefaultsToMinusOne()
        {
            AutoCompleteBox box = new AutoCompleteBox();

            box.MinimumPrefixLength = -3;
            Assert.AreEqual(-1,box.MinimumPrefixLength);
        }
コード例 #11
0
 public void InitializeComponent() {
     if (_contentLoaded) {
         return;
     }
     _contentLoaded = true;
     System.Windows.Application.LoadComponent(this, new System.Uri("/Segator.Loms.Modules.Supplier.Silverlight;component/Silverlight/Administration/W" +
                 "indows/AddEditUserWindow.xaml", System.UriKind.Relative));
     this.ac = ((System.Windows.Controls.AutoCompleteBox)(this.FindName("ac")));
 }
コード例 #12
0
ファイル: FindControl.g.cs プロジェクト: mylgoehy/qlqtpmav10
 public void InitializeComponent() {
     if (_contentLoaded) {
         return;
     }
     _contentLoaded = true;
     System.Windows.Application.LoadComponent(this, new System.Uri("/UISample;component/FindControl.xaml", System.UriKind.Relative));
     this.LayoutRoot = ((System.Windows.Controls.Grid)(this.FindName("LayoutRoot")));
     this.autocomplexbox = ((System.Windows.Controls.AutoCompleteBox)(this.FindName("autocomplexbox")));
     this.textblock = ((System.Windows.Controls.TextBlock)(this.FindName("textblock")));
 }
コード例 #13
0
ファイル: VehiclesView.g.cs プロジェクト: felixthehat/Limo
 public void InitializeComponent() {
     if (_contentLoaded) {
         return;
     }
     _contentLoaded = true;
     System.Windows.Application.LoadComponent(this, new System.Uri("/Segator.Loms.Modules.Supplier.Silverlight;component/Silverlight/Vehicles/Vehicle" +
                 "sView.xaml", System.UriKind.Relative));
     this.LayoutRoot = ((System.Windows.Controls.Grid)(this.FindName("LayoutRoot")));
     this.___No_Name_ = ((System.Windows.Controls.AutoCompleteBox)(this.FindName("___No_Name_")));
 }
コード例 #14
0
ファイル: Page2View.g.cs プロジェクト: felixthehat/Limo
 public void InitializeComponent() {
     if (_contentLoaded) {
         return;
     }
     _contentLoaded = true;
     System.Windows.Application.LoadComponent(this, new System.Uri("/Segator.Loms.Modules.AssociationLogin.Silverlight;component/Silverlight/Registra" +
                 "tion/Views/Page2View.xaml", System.UriKind.Relative));
     this.LayoutRoot = ((System.Windows.Controls.Grid)(this.FindName("LayoutRoot")));
     this.ac = ((System.Windows.Controls.AutoCompleteBox)(this.FindName("ac")));
 }
コード例 #15
0
 void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target)
 {
     switch (connectionId)
     {
     case 1:
         this.txtMedicine = ((System.Windows.Controls.AutoCompleteBox)(target));
         return;
     }
     this._contentLoaded = true;
 }
コード例 #16
0
ファイル: AddressView.g.cs プロジェクト: felixthehat/Limo
 public void InitializeComponent() {
     if (_contentLoaded) {
         return;
     }
     _contentLoaded = true;
     System.Windows.Application.LoadComponent(this, new System.Uri("/Segator.Loms.Modules.Bookings.Silverlight;component/Silverlight/Views/GetQuote/W" +
                 "indows/AddressView.xaml", System.UriKind.Relative));
     this.LayoutRoot = ((System.Windows.Controls.Grid)(this.FindName("LayoutRoot")));
     this.ac = ((System.Windows.Controls.AutoCompleteBox)(this.FindName("ac")));
 }
コード例 #17
0
        void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target)
        {
            switch (connectionId)
            {
            case 1:
                this.GridTest = ((System.Windows.Controls.Grid)(target));
                return;

            case 2:
                this.stackPanel = ((System.Windows.Controls.StackPanel)(target));
                return;

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

            case 4:
                this.text = ((System.Windows.Controls.AutoCompleteBox)(target));
                return;

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

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

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

            case 8:
                this.BingMap = ((Microsoft.Maps.MapControl.WPF.Map)(target));
                return;

            case 9:
                this.packIcon = ((MaterialDesignThemes.Wpf.PackIcon)(target));
                return;

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

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

            case 12:
                this.Chart = ((LiveCharts.Wpf.CartesianChart)(target));
                return;
            }
            this._contentLoaded = true;
        }
コード例 #18
0
ファイル: ServerSetup.g.i.cs プロジェクト: loopsrage/CSP
        void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target)
        {
            switch (connectionId)
            {
            case 1:
                this.FQDN = ((System.Windows.Controls.TextBox)(target));

            #line 26 "..\..\ServerSetup.xaml"
                this.FQDN.TextChanged += new System.Windows.Controls.TextChangedEventHandler(this.FQDN_TextChanged);

            #line default
            #line hidden
                return;

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

            #line 32 "..\..\ServerSetup.xaml"
                this.Credential.TextChanged += new System.Windows.Controls.TextChangedEventHandler(this.Credential_TextChanged);

            #line default
            #line hidden
                return;

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

            case 4:
                this.Version = ((System.Windows.Controls.AutoCompleteBox)(target));

            #line 35 "..\..\ServerSetup.xaml"
                this.Version.TextChanged += new System.Windows.RoutedEventHandler(this.Version_TextChanged);

            #line default
            #line hidden
                return;

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

            #line 36 "..\..\ServerSetup.xaml"
                this.Create_Database.Click += new System.Windows.RoutedEventHandler(this.Begin_Install_Click);

            #line default
            #line hidden
                return;

            case 6:
                this.InstallLogs = ((System.Windows.Controls.TextBlock)(target));
                return;
            }
            this._contentLoaded = true;
        }
コード例 #19
0
 public void InitializeComponent() {
     if (_contentLoaded) {
         return;
     }
     _contentLoaded = true;
     System.Windows.Application.LoadComponent(this, new System.Uri("/Segator.Loms.Modules.AssociationStaff.Silverlight;component/Silverlight/Administ" +
                 "ration/AddStaffUserPopup.xaml", System.UriKind.Relative));
     this.LayoutRoot = ((System.Windows.Controls.Grid)(this.FindName("LayoutRoot")));
     this.ac = ((System.Windows.Controls.AutoCompleteBox)(this.FindName("ac")));
     this.SaveButton = ((System.Windows.Controls.Button)(this.FindName("SaveButton")));
 }
コード例 #20
0
ファイル: Search.g.cs プロジェクト: hotcatteam/Silverlight
 public void InitializeComponent() {
     if (_contentLoaded) {
         return;
     }
     _contentLoaded = true;
     System.Windows.Application.LoadComponent(this, new System.Uri("/TwitterSearch;component/Views/Search.xaml", System.UriKind.Relative));
     this.busyIndicator = ((System.Windows.Controls.BusyIndicator)(this.FindName("busyIndicator")));
     this.LayoutRoot = ((System.Windows.Controls.Grid)(this.FindName("LayoutRoot")));
     this.SearchBox = ((System.Windows.Controls.AutoCompleteBox)(this.FindName("SearchBox")));
     this.SearchButton = ((System.Windows.Controls.Button)(this.FindName("SearchButton")));
     this.SearchResults = ((System.Windows.Controls.ItemsControl)(this.FindName("SearchResults")));
 }
コード例 #21
0
 public void InitializeComponent() {
     if (_contentLoaded) {
         return;
     }
     _contentLoaded = true;
     System.Windows.Application.LoadComponent(this, new System.Uri("/Segator.Loms.Modules.Dispatcher.Silverlight;component/Silverlight/Administration" +
                 "/AddEditDispatchUserView.xaml", System.UriKind.Relative));
     this.PageLoadEvent = ((System.Windows.Interactivity.InvokeCommandAction)(this.FindName("PageLoadEvent")));
     this.CountryChangedEvent = ((System.Windows.Interactivity.InvokeCommandAction)(this.FindName("CountryChangedEvent")));
     this.StateChangedEvent = ((System.Windows.Interactivity.InvokeCommandAction)(this.FindName("StateChangedEvent")));
     this.ac = ((System.Windows.Controls.AutoCompleteBox)(this.FindName("ac")));
 }
コード例 #22
0
 public void InitializeComponent() {
     if (_contentLoaded) {
         return;
     }
     _contentLoaded = true;
     System.Windows.Application.LoadComponent(this, new System.Uri("/Superiority;component/Views/ChatScreen.xaml", System.UriKind.Relative));
     this.LayoutRoot = ((System.Windows.Controls.Grid)(this.FindName("LayoutRoot")));
     this.ChatText = ((System.Windows.Controls.TextBlock)(this.FindName("ChatText")));
     this.ChatBox = ((System.Windows.Controls.RichTextBox)(this.FindName("ChatBox")));
     this.UserList = ((System.Windows.Controls.ScrollViewer)(this.FindName("UserList")));
     this.SendBox = ((System.Windows.Controls.AutoCompleteBox)(this.FindName("SendBox")));
 }
コード例 #23
0
 public void InitializeComponent()
 {
     if (_contentLoaded)
     {
         return;
     }
     _contentLoaded = true;
     System.Windows.Application.LoadComponent(this, new System.Uri("/UISample;component/FindControl.xaml", System.UriKind.Relative));
     this.LayoutRoot     = ((System.Windows.Controls.Grid)(this.FindName("LayoutRoot")));
     this.autocomplexbox = ((System.Windows.Controls.AutoCompleteBox)(this.FindName("autocomplexbox")));
     this.textblock      = ((System.Windows.Controls.TextBlock)(this.FindName("textblock")));
 }
コード例 #24
0
        void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target)
        {
            switch (connectionId)
            {
            case 1:

            #line 50 "..\..\..\..\Views\PatientDetails.xaml"
                ((System.Windows.Controls.TextBox)(target)).PreviewTextInput += new System.Windows.Input.TextCompositionEventHandler(this.TextBox_PreviewTextInput_1);

            #line default
            #line hidden
                return;

            case 2:

            #line 57 "..\..\..\..\Views\PatientDetails.xaml"
                ((System.Windows.Controls.TextBox)(target)).PreviewTextInput += new System.Windows.Input.TextCompositionEventHandler(this.TextBox_PreviewTextInput_1);

            #line default
            #line hidden
                return;

            case 3:
                this.txtAutoComplete = ((System.Windows.Controls.AutoCompleteBox)(target));
                return;

            case 4:
                this.txtMedicine = ((System.Windows.Controls.AutoCompleteBox)(target));
                return;

            case 5:

            #line 107 "..\..\..\..\Views\PatientDetails.xaml"
                ((System.Windows.Controls.TextBox)(target)).PreviewTextInput += new System.Windows.Input.TextCompositionEventHandler(this.TextBox_PreviewTextInput_1);

            #line default
            #line hidden
                return;

            case 6:

            #line 159 "..\..\..\..\Views\PatientDetails.xaml"
                ((System.Windows.Controls.DataGrid)(target)).SelectionChanged += new System.Windows.Controls.SelectionChangedEventHandler(this.DataGrid_SelectionChanged_1);

            #line default
            #line hidden
                return;
            }
            this._contentLoaded = true;
        }
コード例 #25
0
 public void InitializeComponent()
 {
     if (_contentLoaded)
     {
         return;
     }
     _contentLoaded = true;
     System.Windows.Application.LoadComponent(this, new System.Uri("/Superiority;component/Views/ChatScreen.xaml", System.UriKind.Relative));
     this.LayoutRoot = ((System.Windows.Controls.Grid)(this.FindName("LayoutRoot")));
     this.ChatText   = ((System.Windows.Controls.TextBlock)(this.FindName("ChatText")));
     this.ChatBox    = ((System.Windows.Controls.RichTextBox)(this.FindName("ChatBox")));
     this.UserList   = ((System.Windows.Controls.ScrollViewer)(this.FindName("UserList")));
     this.SendBox    = ((System.Windows.Controls.AutoCompleteBox)(this.FindName("SendBox")));
 }
コード例 #26
0
        void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target)
        {
            switch (connectionId)
            {
            case 1:
                this.txtMedicine = ((System.Windows.Controls.AutoCompleteBox)(target));
                return;

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

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

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

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

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

            case 7:

            #line 269 "..\..\..\..\Views\StudentPayments.xaml"
                ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.Print_Click);

            #line default
            #line hidden
                return;

            case 8:
                this.dg_Result = ((System.Windows.Controls.DataGrid)(target));

            #line 290 "..\..\..\..\Views\StudentPayments.xaml"
                this.dg_Result.SelectionChanged += new System.Windows.Controls.SelectionChangedEventHandler(this.DataGrid_SelectionChanged_1);

            #line default
            #line hidden
                return;
            }
            this._contentLoaded = true;
        }
コード例 #27
0
 public void InitializeComponent() {
     if (_contentLoaded) {
         return;
     }
     _contentLoaded = true;
     System.Windows.Application.LoadComponent(this, new System.Uri("/Bcheck.TaskUI;component/Search/PeopleSelectorControl.xaml", System.UriKind.Relative));
     this.LayoutRootSpanel = ((System.Windows.Controls.StackPanel)(this.FindName("LayoutRootSpanel")));
     this.LayoutRoot = ((System.Windows.Controls.Grid)(this.FindName("LayoutRoot")));
     this.gridButtons = ((System.Windows.Controls.Grid)(this.FindName("gridButtons")));
     this.btnResolve = ((System.Windows.Controls.Button)(this.FindName("btnResolve")));
     this.btnBrowse = ((System.Windows.Controls.Button)(this.FindName("btnBrowse")));
     this.gridTxtElements = ((System.Windows.Controls.Grid)(this.FindName("gridTxtElements")));
     this.txtUserField = ((System.Windows.Controls.AutoCompleteBox)(this.FindName("txtUserField")));
     this.txtError = ((System.Windows.Controls.TextBlock)(this.FindName("txtError")));
 }
コード例 #28
0
 public void InitializeComponent()
 {
     if (_contentLoaded)
     {
         return;
     }
     _contentLoaded = true;
     System.Windows.Application.LoadComponent(this, new System.Uri("/WOWSharp.Silverlight5Test;component/GuildTest.xaml", System.UriKind.Relative));
     this.LayoutRoot       = ((System.Windows.Controls.Grid)(this.FindName("LayoutRoot")));
     this.RegionCombo      = ((System.Windows.Controls.ComboBox)(this.FindName("RegionCombo")));
     this.RealmNameText    = ((System.Windows.Controls.AutoCompleteBox)(this.FindName("RealmNameText")));
     this.GuildNameText    = ((System.Windows.Controls.AutoCompleteBox)(this.FindName("GuildNameText")));
     this.GetMembersButton = ((System.Windows.Controls.Button)(this.FindName("GetMembersButton")));
     this.GuildMembersGrid = ((System.Windows.Controls.DataGrid)(this.FindName("GuildMembersGrid")));
 }
コード例 #29
0
 public void InitializeComponent() {
     if (_contentLoaded) {
         return;
     }
     _contentLoaded = true;
     System.Windows.Application.LoadComponent(this, new System.Uri("/SilverlightApplication1;component/MainPage.xaml", System.UriKind.Relative));
     this.LayoutRoot = ((System.Windows.Controls.StackPanel)(this.FindName("LayoutRoot")));
     this.searchSalesData = ((System.Windows.Controls.AutoCompleteBox)(this.FindName("searchSalesData")));
     this.dgSales = ((System.Windows.Controls.DataGrid)(this.FindName("dgSales")));
     this.dgSalesPager = ((System.Windows.Controls.DataPager)(this.FindName("dgSalesPager")));
     this.sliderPager = ((System.Windows.Controls.Slider)(this.FindName("sliderPager")));
     this.sliderSalesAmount = ((System.Windows.Controls.Slider)(this.FindName("sliderSalesAmount")));
     this.sliderSalesForecast = ((System.Windows.Controls.Slider)(this.FindName("sliderSalesForecast")));
     this.gdWrap = ((System.Windows.Controls.Grid)(this.FindName("gdWrap")));
     this.wrapPanelSales = ((System.Windows.Controls.WrapPanel)(this.FindName("wrapPanelSales")));
 }
 public void InitializeComponent() {
     if (_contentLoaded) {
         return;
     }
     _contentLoaded = true;
     System.Windows.Application.LoadComponent(this, new System.Uri("/Microsoft.HealthMonitor;component/Views/MainView.xaml", System.UriKind.Relative));
     this.LayoutRoot = ((System.Windows.Controls.Grid)(this.FindName("LayoutRoot")));
     this.TraceGrid = ((System.Windows.Controls.DataGrid)(this.FindName("TraceGrid")));
     this.buttonCapture = ((System.Windows.Controls.Button)(this.FindName("buttonCapture")));
     this.playerFrame = ((System.Windows.Controls.ContentControl)(this.FindName("playerFrame")));
     this.Player = ((Microsoft.HealthMonitorPlayer.Views.Player)(this.FindName("Player")));
     this.TextStreamUrl = ((System.Windows.Controls.TextBox)(this.FindName("TextStreamUrl")));
     this.ButtonPlay = ((System.Windows.Controls.Button)(this.FindName("ButtonPlay")));
     this.TextPlayerId = ((System.Windows.Controls.AutoCompleteBox)(this.FindName("TextPlayerId")));
     this.ButtonConnect = ((System.Windows.Controls.Button)(this.FindName("ButtonConnect")));
 }
コード例 #31
0
 public void InitializeComponent()
 {
     if (_contentLoaded)
     {
         return;
     }
     _contentLoaded = true;
     System.Windows.Application.LoadComponent(this, new System.Uri("/Microsoft.HealthMonitor;component/Views/MainView.xaml", System.UriKind.Relative));
     this.LayoutRoot    = ((System.Windows.Controls.Grid)(this.FindName("LayoutRoot")));
     this.TraceGrid     = ((System.Windows.Controls.DataGrid)(this.FindName("TraceGrid")));
     this.buttonCapture = ((System.Windows.Controls.Button)(this.FindName("buttonCapture")));
     this.playerFrame   = ((System.Windows.Controls.ContentControl)(this.FindName("playerFrame")));
     this.Player        = ((Microsoft.HealthMonitorPlayer.Views.Player)(this.FindName("Player")));
     this.TextStreamUrl = ((System.Windows.Controls.TextBox)(this.FindName("TextStreamUrl")));
     this.ButtonPlay    = ((System.Windows.Controls.Button)(this.FindName("ButtonPlay")));
     this.TextPlayerId  = ((System.Windows.Controls.AutoCompleteBox)(this.FindName("TextPlayerId")));
     this.ButtonConnect = ((System.Windows.Controls.Button)(this.FindName("ButtonConnect")));
 }
コード例 #32
0
ファイル: MainPage.g.i.cs プロジェクト: asebak/soen341kronos
 public void InitializeComponent()
 {
     if (_contentLoaded)
     {
         return;
     }
     _contentLoaded = true;
     System.Windows.Application.LoadComponent(this, new System.Uri("/TimeTableDesign;component/MainPage.xaml", System.UriKind.Relative));
     this.LayoutRoot              = ((System.Windows.Controls.Grid)(this.FindName("LayoutRoot")));
     this.TimeTable               = ((System.Windows.Controls.DataGrid)(this.FindName("TimeTable")));
     this.ParamterList            = ((System.Windows.Controls.ComboBox)(this.FindName("ParamterList")));
     this.Fall_checkbox           = ((System.Windows.Controls.CheckBox)(this.FindName("Fall_checkbox")));
     this.Winter_checkbox         = ((System.Windows.Controls.CheckBox)(this.FindName("Winter_checkbox")));
     this.Summer_checkbox         = ((System.Windows.Controls.CheckBox)(this.FindName("Summer_checkbox")));
     this.Course_textbox          = ((System.Windows.Controls.AutoCompleteBox)(this.FindName("Course_textbox")));
     this.Course_entered          = ((System.Windows.Controls.Button)(this.FindName("Course_entered")));
     this.save_button             = ((System.Windows.Controls.Button)(this.FindName("save_button")));
     this.generated_schedule_page = ((System.Windows.Controls.DataPager)(this.FindName("generated_schedule_page")));
 }
コード例 #33
0
        void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target)
        {
            switch (connectionId)
            {
            case 1:
                this.paymentType = ((MaterialEWpfDemo.PaymmentTypeControl)(target));
                return;

            case 2:
                this.stackpanel = ((System.Windows.Controls.StackPanel)(target));
                return;

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

            case 4:
                this.autocomplete = ((System.Windows.Controls.AutoCompleteBox)(target));
                return;
            }
            this._contentLoaded = true;
        }
コード例 #34
0
        void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target)
        {
            switch (connectionId)
            {
            case 1:
                this.CompleteBox = ((System.Windows.Controls.AutoCompleteBox)(target));

            #line 18 "..\..\..\Views\AutoComplete.xaml"
                this.CompleteBox.TextChanged += new System.Windows.RoutedEventHandler(this.AutoCompleteBox_OnTextChanged);

            #line default
            #line hidden

            #line 19 "..\..\..\Views\AutoComplete.xaml"
                this.CompleteBox.SelectionChanged += new System.Windows.Controls.SelectionChangedEventHandler(this.CompleteBox_OnSelectionChanged);

            #line default
            #line hidden
                return;
            }
            this._contentLoaded = true;
        }
コード例 #35
0
ファイル: MainView.g.i.cs プロジェクト: OpsOwns/Weather-2.0
        void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target)
        {
            switch (connectionId)
            {
            case 1:
                this.SearchBtn = ((System.Windows.Controls.Button)(target));
                return;

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

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

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

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

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

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

            case 8:
                this.ItemList = ((System.Windows.Controls.ListView)(target));
                return;
            }
            this._contentLoaded = true;
        }
コード例 #36
0
        void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target)
        {
            switch (connectionId)
            {
            case 1:
                this.srgroupproduk = ((System.Windows.Controls.AutoCompleteBox)(target));
                return;

            case 2:
                this.DGload = ((System.Windows.Controls.DataGrid)(target));
                return;

            case 3:

            #line 141 "..\..\..\..\Views\Pos\Load - Copy.xaml"
                ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.Cancel_Clicks);

            #line default
            #line hidden
                return;
            }
            this._contentLoaded = true;
        }
コード例 #37
0
        void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target)
        {
            switch (connectionId)
            {
            case 1:
                this.autoCompleteBoxId = ((System.Windows.Controls.AutoCompleteBox)(target));

            #line 36 "..\..\IdSearch.xaml"
                this.autoCompleteBoxId.LostFocus += new System.Windows.RoutedEventHandler(this.autoCompleteBoxTypes_LostFocus);

            #line default
            #line hidden

            #line 36 "..\..\IdSearch.xaml"
                this.autoCompleteBoxId.PreviewKeyDown += new System.Windows.Input.KeyEventHandler(this.autoCompleteBoxType_PreviewKeyDown);

            #line default
            #line hidden
                return;

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

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

            #line 45 "..\..\IdSearch.xaml"
                this.buttonSearch.Click += new System.Windows.RoutedEventHandler(this.idSearch);

            #line default
            #line hidden
                return;
            }
            this._contentLoaded = true;
        }
コード例 #38
0
 void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) {
     switch (connectionId)
     {
     case 1:
     this.scanButton = ((System.Windows.Controls.Button)(target));
     
     #line 22 "..\..\..\MainWindow.xaml"
     this.scanButton.Click += new System.Windows.RoutedEventHandler(this.scanButton_Click);
     
     #line default
     #line hidden
     return;
     case 2:
     this.scannedImageHolder = ((System.Windows.Controls.Image)(target));
     
     #line 24 "..\..\..\MainWindow.xaml"
     this.scannedImageHolder.ImageFailed += new System.EventHandler<System.Windows.ExceptionRoutedEventArgs>(this.scannedImage_ImageFailed);
     
     #line default
     #line hidden
     return;
     case 3:
     this.VersionLabel = ((System.Windows.Controls.Label)(target));
     return;
     case 4:
     this.progressBar1 = ((System.Windows.Controls.ProgressBar)(target));
     return;
     case 5:
     this.usernameBox = ((System.Windows.Controls.AutoCompleteBox)(target));
     
     #line 36 "..\..\..\MainWindow.xaml"
     this.usernameBox.Populating += new System.Windows.Controls.PopulatingEventHandler(this.user_Populating);
     
     #line default
     #line hidden
     return;
     case 6:
     this.label1 = ((System.Windows.Controls.Label)(target));
     return;
     case 7:
     this.sendButton = ((System.Windows.Controls.Button)(target));
     
     #line 38 "..\..\..\MainWindow.xaml"
     this.sendButton.Click += new System.Windows.RoutedEventHandler(this.sendButton_Click);
     
     #line default
     #line hidden
     return;
     }
     this._contentLoaded = true;
 }
コード例 #39
0
 public void InitializeComponent() {
     if (_contentLoaded) {
         return;
     }
     _contentLoaded = true;
     System.Windows.Application.LoadComponent(this, new System.Uri("/ProyectoSCA_Navigation;component/Views/FiltrosBusqueda.xaml", System.UriKind.Relative));
     this.LayoutRoot = ((System.Windows.Controls.Grid)(this.FindName("LayoutRoot")));
     this.PageScrollViewer = ((System.Windows.Controls.ScrollViewer)(this.FindName("PageScrollViewer")));
     this.grid2 = ((System.Windows.Controls.Grid)(this.FindName("grid2")));
     this.border1 = ((System.Windows.Controls.Border)(this.FindName("border1")));
     this.grid4 = ((System.Windows.Controls.Grid)(this.FindName("grid4")));
     this.numeroCertificado_txt = ((System.Windows.Controls.ComboBox)(this.FindName("numeroCertificado_txt")));
     this.label4 = ((System.Windows.Controls.Label)(this.FindName("label4")));
     this.label5 = ((System.Windows.Controls.Label)(this.FindName("label5")));
     this.id = ((System.Windows.Controls.Label)(this.FindName("id")));
     this.nombreAuto_txt = ((System.Windows.Controls.AutoCompleteBox)(this.FindName("nombreAuto_txt")));
     this.buscar_btn = ((System.Windows.Controls.Button)(this.FindName("buscar_btn")));
     this.label7 = ((System.Windows.Controls.Label)(this.FindName("label7")));
     this.label8 = ((System.Windows.Controls.Label)(this.FindName("label8")));
     this.label11 = ((System.Windows.Controls.Label)(this.FindName("label11")));
     this.estadoCivil_txt = ((System.Windows.Controls.ComboBox)(this.FindName("estadoCivil_txt")));
     this.label13 = ((System.Windows.Controls.Label)(this.FindName("label13")));
     this.profesion_txt = ((System.Windows.Controls.ComboBox)(this.FindName("profesion_txt")));
     this.label26 = ((System.Windows.Controls.Label)(this.FindName("label26")));
     this.estadoAfiliado_txt = ((System.Windows.Controls.ComboBox)(this.FindName("estadoAfiliado_txt")));
     this.genero_txt = ((System.Windows.Controls.ComboBox)(this.FindName("genero_txt")));
     this.label33 = ((System.Windows.Controls.Label)(this.FindName("label33")));
     this.label35 = ((System.Windows.Controls.Label)(this.FindName("label35")));
     this.label3 = ((System.Windows.Controls.Label)(this.FindName("label3")));
     this.label14 = ((System.Windows.Controls.Label)(this.FindName("label14")));
     this.id_txt = ((System.Windows.Controls.TextBox)(this.FindName("id_txt")));
     this.telefono_txt = ((System.Windows.Controls.TextBox)(this.FindName("telefono_txt")));
     this.celular_txt = ((System.Windows.Controls.TextBox)(this.FindName("celular_txt")));
     this.empresa_txt = ((System.Windows.Controls.TextBox)(this.FindName("empresa_txt")));
     this.correo_txt = ((System.Windows.Controls.TextBox)(this.FindName("correo_txt")));
     this.reset_btn = ((System.Windows.Controls.Button)(this.FindName("reset_btn")));
     this.gridResultado = ((System.Windows.Controls.DataGrid)(this.FindName("gridResultado")));
     this.verPerfil_btn = ((System.Windows.Controls.Button)(this.FindName("verPerfil_btn")));
     this.estadoCuenta_btn = ((System.Windows.Controls.Button)(this.FindName("estadoCuenta_btn")));
     this.label6 = ((System.Windows.Controls.Label)(this.FindName("label6")));
     this.generarReporte_btn = ((System.Windows.Controls.Button)(this.FindName("generarReporte_btn")));
 }
コード例 #40
0
        void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target)
        {
            switch (connectionId)
            {
            case 1:

            #line 6 "..\..\..\..\Views\SelectAssemblyReleaseWindow.xaml"
                ((MasterSchedule.Views.SelectAssemblyReleaseWindow)(target)).Loaded += new System.Windows.RoutedEventHandler(this.Window_Loaded);

            #line default
            #line hidden
                return;

            case 2:
                this.txtReportId = ((System.Windows.Controls.AutoCompleteBox)(target));
                return;

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

            #line 21 "..\..\..\..\Views\SelectAssemblyReleaseWindow.xaml"
                this.btnOk.Click += new System.Windows.RoutedEventHandler(this.btnOk_Click);

            #line default
            #line hidden
                return;

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

            #line 22 "..\..\..\..\Views\SelectAssemblyReleaseWindow.xaml"
                this.btnSearchExpand.Click += new System.Windows.RoutedEventHandler(this.btnSearchExpand_Click);

            #line default
            #line hidden
                return;

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

            case 6:
                this.txtProductNo = ((System.Windows.Controls.AutoCompleteBox)(target));
                return;

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

            #line 36 "..\..\..\..\Views\SelectAssemblyReleaseWindow.xaml"
                this.btnSearch.Click += new System.Windows.RoutedEventHandler(this.btnSearch_Click);

            #line default
            #line hidden
                return;

            case 8:
                this.lvReportId = ((System.Windows.Controls.ListView)(target));

            #line 37 "..\..\..\..\Views\SelectAssemblyReleaseWindow.xaml"
                this.lvReportId.MouseDoubleClick += new System.Windows.Input.MouseButtonEventHandler(this.lvReportId_MouseDoubleClick);

            #line default
            #line hidden
                return;
            }
            this._contentLoaded = true;
        }
コード例 #41
0
 void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) {
     switch (connectionId)
     {
     case 1:
     
     #line 6 "..\..\PolarGraphWindow - Copy.xaml"
     ((IMPressive.PolarGraphWindow)(target)).Loaded += new System.Windows.RoutedEventHandler(this.Window_Loaded);
     
     #line default
     #line hidden
     
     #line 6 "..\..\PolarGraphWindow - Copy.xaml"
     ((IMPressive.PolarGraphWindow)(target)).SizeChanged += new System.Windows.SizeChangedEventHandler(this.Window_SizeChanged);
     
     #line default
     #line hidden
     return;
     case 2:
     this.chartCanvas = ((System.Windows.Controls.Canvas)(target));
     
     #line 38 "..\..\PolarGraphWindow - Copy.xaml"
     this.chartCanvas.MouseWheel += new System.Windows.Input.MouseWheelEventHandler(this.chartCanvas_MouseWheel);
     
     #line default
     #line hidden
     return;
     case 3:
     this.st = ((System.Windows.Media.ScaleTransform)(target));
     return;
     case 4:
     this.btnLoad = ((System.Windows.Controls.Button)(target));
     
     #line 45 "..\..\PolarGraphWindow - Copy.xaml"
     this.btnLoad.Click += new System.Windows.RoutedEventHandler(this.btnLoad_Click);
     
     #line default
     #line hidden
     return;
     case 5:
     this.txtOperation = ((System.Windows.Controls.AutoCompleteBox)(target));
     
     #line 47 "..\..\PolarGraphWindow - Copy.xaml"
     this.txtOperation.KeyUp += new System.Windows.Input.KeyEventHandler(this.txtOperation_KeyUp);
     
     #line default
     #line hidden
     
     #line 47 "..\..\PolarGraphWindow - Copy.xaml"
     this.txtOperation.SelectionChanged += new System.Windows.Controls.SelectionChangedEventHandler(this.txtOperation_SelectionChanged);
     
     #line default
     #line hidden
     
     #line 47 "..\..\PolarGraphWindow - Copy.xaml"
     this.txtOperation.DropDownClosed += new System.Windows.RoutedPropertyChangedEventHandler<bool>(this.txtOperation_DropDownClosed);
     
     #line default
     #line hidden
     return;
     case 6:
     this.btnClear = ((System.Windows.Controls.Button)(target));
     
     #line 57 "..\..\PolarGraphWindow - Copy.xaml"
     this.btnClear.Click += new System.Windows.RoutedEventHandler(this.btnClear_Click);
     
     #line default
     #line hidden
     return;
     case 7:
     this.bg2 = ((System.Windows.Controls.Border)(target));
     return;
     case 8:
     this.cpxColor = ((Xceed.Wpf.Toolkit.ColorPicker)(target));
     return;
     case 9:
     this.txtFromX = ((System.Windows.Controls.TextBox)(target));
     
     #line 74 "..\..\PolarGraphWindow - Copy.xaml"
     this.txtFromX.KeyUp += new System.Windows.Input.KeyEventHandler(this.txtOperation_KeyUp);
     
     #line default
     #line hidden
     return;
     case 10:
     this.txtToX = ((System.Windows.Controls.TextBox)(target));
     
     #line 84 "..\..\PolarGraphWindow - Copy.xaml"
     this.txtToX.KeyUp += new System.Windows.Input.KeyEventHandler(this.txtOperation_KeyUp);
     
     #line default
     #line hidden
     return;
     case 11:
     this.txtPasX = ((System.Windows.Controls.TextBox)(target));
     
     #line 94 "..\..\PolarGraphWindow - Copy.xaml"
     this.txtPasX.KeyUp += new System.Windows.Input.KeyEventHandler(this.txtOperation_KeyUp);
     
     #line default
     #line hidden
     return;
     }
     this._contentLoaded = true;
 }
コード例 #42
0
ファイル: TestWindow.g.i.cs プロジェクト: kryska/Recette
 void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) {
     switch (connectionId)
     {
     case 1:
     this.ButtonGrid = ((System.Windows.Controls.StackPanel)(target));
     return;
     case 2:
     this.RadioButtonGrid_TextBlockGrid = ((System.Windows.Controls.StackPanel)(target));
     return;
     case 3:
     this.TopButton = ((System.Windows.Controls.RadioButton)(target));
     return;
     case 4:
     this.MiddleButton = ((System.Windows.Controls.RadioButton)(target));
     return;
     case 5:
     this.CheckBoxGrid = ((System.Windows.Controls.StackPanel)(target));
     return;
     case 6:
     this.cb1 = ((System.Windows.Controls.CheckBox)(target));
     return;
     case 7:
     this.cb2 = ((System.Windows.Controls.CheckBox)(target));
     return;
     case 8:
     this.ListBoxGrid_Scroll = ((System.Windows.Controls.StackPanel)(target));
     return;
     case 9:
     this.TextBoxGrid = ((System.Windows.Controls.StackPanel)(target));
     return;
     case 10:
     this.ComboBoxGrid = ((System.Windows.Controls.StackPanel)(target));
     return;
     case 11:
     this.EditableComboBoxGrid = ((System.Windows.Controls.StackPanel)(target));
     return;
     case 12:
     this.RepeatButtonGrid = ((System.Windows.Controls.StackPanel)(target));
     return;
     case 13:
     
     #line 109 "..\..\..\View\TestWindow.xaml"
     ((System.Windows.Controls.Primitives.RepeatButton)(target)).Click += new System.Windows.RoutedEventHandler(this.RepeatButton_Click);
     
     #line default
     #line hidden
     return;
     case 14:
     this.clickTextBlock = ((System.Windows.Controls.TextBlock)(target));
     return;
     case 15:
     this.ToggleButtonGrid = ((System.Windows.Controls.StackPanel)(target));
     return;
     case 16:
     this.SliderGrid = ((System.Windows.Controls.StackPanel)(target));
     return;
     case 17:
     this.GridSplitterGrid = ((System.Windows.Controls.StackPanel)(target));
     return;
     case 18:
     this.ProgressBarGrid = ((System.Windows.Controls.StackPanel)(target));
     return;
     case 19:
     this.ValueBasedProgressbar = ((System.Windows.Controls.ProgressBar)(target));
     return;
     case 20:
     this.IndeterminateProgressbar = ((System.Windows.Controls.ProgressBar)(target));
     return;
     case 21:
     this.RatingGrid = ((System.Windows.Controls.StackPanel)(target));
     return;
     case 22:
     this.PasswordBoxGrid = ((System.Windows.Controls.StackPanel)(target));
     return;
     case 23:
     this.pbox = ((System.Windows.Controls.PasswordBox)(target));
     return;
     case 24:
     this.TooltipGrid = ((System.Windows.Controls.StackPanel)(target));
     return;
     case 25:
     this.ExpanderGrid = ((System.Windows.Controls.StackPanel)(target));
     return;
     case 26:
     this.AccordionGrid = ((System.Windows.Controls.StackPanel)(target));
     return;
     case 27:
     this.LabelGrid = ((System.Windows.Controls.StackPanel)(target));
     return;
     case 28:
     this.AutoCompleteBoxGrid = ((System.Windows.Controls.StackPanel)(target));
     return;
     case 29:
     this.autoComplete = ((System.Windows.Controls.AutoCompleteBox)(target));
     return;
     case 30:
     this.GroupBoxGrid = ((System.Windows.Controls.StackPanel)(target));
     return;
     }
     this._contentLoaded = true;
 }
コード例 #43
0
        void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target)
        {
            switch (connectionId)
            {
            case 1:

            #line 12 "..\..\..\..\Views\PurchaseDelivery\Sku.xaml"
                ((Reyuko.App.Views.PurchaseDelivery.Sku)(target)).Loaded += new System.Windows.RoutedEventHandler(this.load);

            #line default
            #line hidden
                return;

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

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

            #line 61 "..\..\..\..\Views\PurchaseDelivery\Sku.xaml"
                this.txttotal.TextChanged += new System.Windows.Controls.TextChangedEventHandler(this.txttotal_TextChanged);

            #line default
            #line hidden
                return;

            case 4:
                this.srsku = ((System.Windows.Controls.AutoCompleteBox)(target));

            #line 68 "..\..\..\..\Views\PurchaseDelivery\Sku.xaml"
                this.srsku.SelectionChanged += new System.Windows.Controls.SelectionChangedEventHandler(this.produk_selectedchange);

            #line default
            #line hidden
                return;

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

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

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

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

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

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

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

            case 12:

            #line 102 "..\..\..\..\Views\PurchaseDelivery\Sku.xaml"
                ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.Addsku_Clicks);

            #line default
            #line hidden
                return;

            case 13:

            #line 109 "..\..\..\..\Views\PurchaseDelivery\Sku.xaml"
                ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.Cancel_Clicks);

            #line default
            #line hidden
                return;
            }
            this._contentLoaded = true;
        }
コード例 #44
0
        void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target)
        {
            switch (connectionId)
            {
            case 1:
                this.dataGrid1 = ((System.Windows.Controls.DataGrid)(target));

            #line 6 "..\..\..\Cust_Profile_View.xaml"
                this.dataGrid1.Loaded += new System.Windows.RoutedEventHandler(this.dataGrid1_Loaded);

            #line default
            #line hidden
                return;

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

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

            #line default
            #line hidden
                return;

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

            case 4:
                this.Cust_Name = ((System.Windows.Controls.AutoCompleteBox)(target));
                return;

            case 5:
                this.barcode = ((Neodynamic.WPF.BarcodeProfessional)(target));
                return;

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

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

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

            #line default
            #line hidden
                return;

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

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

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

            #line default
            #line hidden
                return;

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

            case 11:

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

            #line default
            #line hidden
                return;

            case 12:

            #line 34 "..\..\..\Cust_Profile_View.xaml"
                ((System.Windows.Controls.MenuItem)(target)).Click += new System.Windows.RoutedEventHandler(this.MenuItem_Click_1);

            #line default
            #line hidden
                return;

            case 13:

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

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

            #line 39 "..\..\..\..\Views\PostDateChequeIssuance\PostDateChequeIssuance.xaml"
                ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.playtutorial_Click);

            #line default
            #line hidden
                return;

            case 2:

            #line 60 "..\..\..\..\Views\PostDateChequeIssuance\PostDateChequeIssuance.xaml"
                ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.ChasingCheck_Click);

            #line default
            #line hidden
                return;

            case 3:

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

            #line default
            #line hidden
                return;

            case 4:
                this.srcustomer = ((System.Windows.Controls.AutoCompleteBox)(target));
                return;

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

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

            #line 103 "..\..\..\..\Views\PostDateChequeIssuance\PostDateChequeIssuance.xaml"
                this.txtvalue.TextChanged += new System.Windows.Controls.TextChangedEventHandler(this.Txtvalue_TextChanged);

            #line default
            #line hidden
                return;

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

            #line 104 "..\..\..\..\Views\PostDateChequeIssuance\PostDateChequeIssuance.xaml"
                this.txtRange.TextChanged += new System.Windows.Controls.TextChangedEventHandler(this.TxtRange_TextChanged);

            #line default
            #line hidden
                return;

            case 8:
                this.DGPostDateChequeIssuance = ((System.Windows.Controls.DataGrid)(target));
                return;
            }
            this._contentLoaded = true;
        }
コード例 #46
0
ファイル: InputWnd.g.i.cs プロジェクト: zdimension/IMPression
 void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) {
     switch (connectionId)
     {
     case 1:
     this.txtOperation = ((System.Windows.Controls.AutoCompleteBox)(target));
     return;
     case 2:
     this.btnOK = ((System.Windows.Controls.Button)(target));
     return;
     case 3:
     this.btnCancel = ((System.Windows.Controls.Button)(target));
     return;
     case 4:
     this.textBlock = ((System.Windows.Controls.TextBlock)(target));
     return;
     }
     this._contentLoaded = true;
 }
コード例 #47
0
ファイル: Search.g.i.cs プロジェクト: nilavghosh/VChk
 public void InitializeComponent() {
     if (_contentLoaded) {
         return;
     }
     _contentLoaded = true;
     System.Windows.Application.LoadComponent(this, new System.Uri("/Bcheck.TaskUI;component/Search/Search.xaml", System.UriKind.Relative));
     this.LayoutRoot = ((System.Windows.Controls.Grid)(this.FindName("LayoutRoot")));
     this.txtSearchTypeLabel = ((System.Windows.Controls.TextBlock)(this.FindName("txtSearchTypeLabel")));
     this.UserAssignedTo = ((BCheck.TaskUI.PeopleSelectorControl)(this.FindName("UserAssignedTo")));
     this.txtTaskName = ((System.Windows.Controls.AutoCompleteBox)(this.FindName("txtTaskName")));
     this.UserManager = ((BCheck.TaskUI.PeopleSelectorControl)(this.FindName("UserManager")));
     this.dtStartDate = ((System.Windows.Controls.DatePicker)(this.FindName("dtStartDate")));
     this.dtEndDate = ((System.Windows.Controls.DatePicker)(this.FindName("dtEndDate")));
     this.lblFunctional = ((System.Windows.Controls.TextBlock)(this.FindName("lblFunctional")));
     this.txtFunctional = ((System.Windows.Controls.AutoCompleteBox)(this.FindName("txtFunctional")));
     this.lblBusinessArea = ((System.Windows.Controls.TextBlock)(this.FindName("lblBusinessArea")));
     this.cboBusinessArea = ((C1.Silverlight.C1ComboBox)(this.FindName("cboBusinessArea")));
     this.lblStatus = ((System.Windows.Controls.TextBlock)(this.FindName("lblStatus")));
     this.cboTaskStatus = ((C1.Silverlight.C1ComboBox)(this.FindName("cboTaskStatus")));
     this.pnlSavedSearches = ((System.Windows.Controls.StackPanel)(this.FindName("pnlSavedSearches")));
     this.btnSave = ((System.Windows.Controls.Button)(this.FindName("btnSave")));
     this.cboSearchPicker = ((System.Windows.Controls.ComboBox)(this.FindName("cboSearchPicker")));
     this.btnDelete = ((System.Windows.Controls.Button)(this.FindName("btnDelete")));
     this.btnNew = ((System.Windows.Controls.Button)(this.FindName("btnNew")));
     this.btnSearch = ((System.Windows.Controls.Button)(this.FindName("btnSearch")));
     this.SearchBusyIndicator = ((System.Windows.Controls.BusyIndicator)(this.FindName("SearchBusyIndicator")));
 }
コード例 #48
0
 void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) {
     switch (connectionId)
     {
     case 1:
     
     #line 6 "..\..\Graph3DWindow.xaml"
     ((IMPressive.Graph3DWindow)(target)).Loaded += new System.Windows.RoutedEventHandler(this.Window_Loaded);
     
     #line default
     #line hidden
     
     #line 6 "..\..\Graph3DWindow.xaml"
     ((IMPressive.Graph3DWindow)(target)).SizeChanged += new System.Windows.SizeChangedEventHandler(this.Window_SizeChanged);
     
     #line default
     #line hidden
     
     #line 6 "..\..\Graph3DWindow.xaml"
     ((IMPressive.Graph3DWindow)(target)).KeyDown += new System.Windows.Input.KeyEventHandler(this.Window_KeyDown);
     
     #line default
     #line hidden
     
     #line 6 "..\..\Graph3DWindow.xaml"
     ((IMPressive.Graph3DWindow)(target)).MouseWheel += new System.Windows.Input.MouseWheelEventHandler(this.Window_MouseWheel);
     
     #line default
     #line hidden
     return;
     case 2:
     this.mainViewport = ((System.Windows.Controls.Viewport3D)(target));
     return;
     case 3:
     this.camera = ((System.Windows.Media.Media3D.OrthographicCamera)(target));
     return;
     case 4:
     this.Light1 = ((System.Windows.Media.Media3D.ModelVisual3D)(target));
     return;
     case 5:
     this.btnLoad = ((System.Windows.Controls.Button)(target));
     
     #line 49 "..\..\Graph3DWindow.xaml"
     this.btnLoad.Click += new System.Windows.RoutedEventHandler(this.btnLoad_Click);
     
     #line default
     #line hidden
     return;
     case 6:
     this.txtOperation = ((System.Windows.Controls.AutoCompleteBox)(target));
     
     #line 51 "..\..\Graph3DWindow.xaml"
     this.txtOperation.KeyUp += new System.Windows.Input.KeyEventHandler(this.txtOperation_KeyUp);
     
     #line default
     #line hidden
     return;
     case 7:
     this.btnClear = ((System.Windows.Controls.Button)(target));
     
     #line 60 "..\..\Graph3DWindow.xaml"
     this.btnClear.Click += new System.Windows.RoutedEventHandler(this.btnClear_Click);
     
     #line default
     #line hidden
     return;
     case 8:
     this.bg2 = ((System.Windows.Controls.Border)(target));
     return;
     case 9:
     this.cpxColor = ((Xceed.Wpf.Toolkit.ColorPicker)(target));
     return;
     }
     this._contentLoaded = true;
 }
コード例 #49
0
ファイル: MainWindow.g.i.cs プロジェクト: Ruddylee/sharePhoto
        void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target)
        {
            switch (connectionId)
            {
            case 1:
                this.myTabControl = ((System.Windows.Controls.TabControl)(target));
                return;

            case 2:
                this.tab1 = ((System.Windows.Controls.TabItem)(target));
                return;

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

            #line 48 "..\..\MainWindow.xaml"
                this.label_debug.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.Label_MouseDown);

            #line default
            #line hidden
                return;

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

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

            #line default
            #line hidden
                return;

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

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

            case 7:

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

            #line default
            #line hidden
                return;

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

            #line 64 "..\..\MainWindow.xaml"
                this.AutoCompleteBox.KeyUp += new System.Windows.Input.KeyEventHandler(this.AutoCompleteBox_KeyDown);

            #line default
            #line hidden

            #line 64 "..\..\MainWindow.xaml"
                this.AutoCompleteBox.MouseLeftButtonUp += new System.Windows.Input.MouseButtonEventHandler(this.AutoCompleteBox_MouseLeftButtonUp);

            #line default
            #line hidden

            #line 64 "..\..\MainWindow.xaml"
                this.AutoCompleteBox.MouseUp += new System.Windows.Input.MouseButtonEventHandler(this.AutoCompleteBox_MouseUp);

            #line default
            #line hidden
                return;

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

            #line 74 "..\..\MainWindow.xaml"
                this.email_list.MouseRightButtonDown += new System.Windows.Input.MouseButtonEventHandler(this.email_list_MouseRightButtonDown);

            #line default
            #line hidden
                return;

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

            case 11:

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

            #line default
            #line hidden
                return;

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

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

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

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

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

            case 17:
                this.tab2 = ((System.Windows.Controls.TabItem)(target));
                return;

            case 18:
                this.wb1 = ((System.Windows.Controls.WebBrowser)(target));
                return;
            }
            this._contentLoaded = true;
        }
コード例 #50
0
 void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) {
     switch (connectionId)
     {
     case 1:
     
     #line 6 "..\..\..\GraphWindow.xaml"
     ((IMPressive.GraphWindow)(target)).Loaded += new System.Windows.RoutedEventHandler(this.Window_Loaded);
     
     #line default
     #line hidden
     
     #line 6 "..\..\..\GraphWindow.xaml"
     ((IMPressive.GraphWindow)(target)).SizeChanged += new System.Windows.SizeChangedEventHandler(this.Window_SizeChanged);
     
     #line default
     #line hidden
     return;
     case 2:
     this.chartCanvas = ((System.Windows.Controls.Canvas)(target));
     
     #line 31 "..\..\..\GraphWindow.xaml"
     this.chartCanvas.MouseWheel += new System.Windows.Input.MouseWheelEventHandler(this.chartCanvas_MouseWheel);
     
     #line default
     #line hidden
     return;
     case 3:
     this.st = ((System.Windows.Media.ScaleTransform)(target));
     return;
     case 4:
     this.btnLoad = ((System.Windows.Controls.Button)(target));
     
     #line 37 "..\..\..\GraphWindow.xaml"
     this.btnLoad.Click += new System.Windows.RoutedEventHandler(this.btnLoad_Click);
     
     #line default
     #line hidden
     return;
     case 5:
     this.txtOperation = ((System.Windows.Controls.AutoCompleteBox)(target));
     
     #line 39 "..\..\..\GraphWindow.xaml"
     this.txtOperation.KeyUp += new System.Windows.Input.KeyEventHandler(this.txtOperation_KeyUp);
     
     #line default
     #line hidden
     return;
     case 6:
     this.btnClear = ((System.Windows.Controls.Button)(target));
     
     #line 48 "..\..\..\GraphWindow.xaml"
     this.btnClear.Click += new System.Windows.RoutedEventHandler(this.btnClear_Click);
     
     #line default
     #line hidden
     return;
     case 7:
     this.bg2 = ((System.Windows.Controls.Border)(target));
     return;
     case 8:
     this.cpxColor = ((Xceed.Wpf.Toolkit.ColorPicker)(target));
     return;
     }
     this._contentLoaded = true;
 }
コード例 #51
0
ファイル: AddNewItem.g.cs プロジェクト: MegatronX/KHMPOld
 void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) {
     switch (connectionId)
     {
     case 1:
     this.AddNewItemWindow = ((WPFTools.ItemWindows.AddNewItem)(target));
     return;
     case 2:
     this.NewItemCount = ((System.Windows.Controls.TextBox)(target));
     return;
     case 3:
     this.CancelNewItemClass = ((System.Windows.Controls.Button)(target));
     return;
     case 4:
     this.SaveNewButtonClass = ((System.Windows.Controls.Button)(target));
     return;
     case 5:
     this.label5 = ((System.Windows.Controls.Label)(target));
     return;
     case 6:
     this.label1 = ((System.Windows.Controls.Label)(target));
     return;
     case 7:
     this.label2 = ((System.Windows.Controls.Label)(target));
     return;
     case 8:
     this.ItemName = ((System.Windows.Controls.AutoCompleteBox)(target));
     return;
     }
     this._contentLoaded = true;
 }
コード例 #52
0
 void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) {
     switch (connectionId)
     {
     case 1:
     this.dataGrid1 = ((System.Windows.Controls.DataGrid)(target));
     
     #line 6 "..\..\..\Cust_Profile_View.xaml"
     this.dataGrid1.Loaded += new System.Windows.RoutedEventHandler(this.dataGrid1_Loaded);
     
     #line default
     #line hidden
     return;
     case 2:
     this.button1 = ((System.Windows.Controls.Button)(target));
     
     #line 18 "..\..\..\Cust_Profile_View.xaml"
     this.button1.Click += new System.Windows.RoutedEventHandler(this.button1_Click);
     
     #line default
     #line hidden
     return;
     case 3:
     this.label1 = ((System.Windows.Controls.Label)(target));
     return;
     case 4:
     this.Cust_Name = ((System.Windows.Controls.AutoCompleteBox)(target));
     return;
     case 5:
     this.barcode = ((Neodynamic.WPF.BarcodeProfessional)(target));
     return;
     case 6:
     this.textBox1 = ((System.Windows.Controls.TextBox)(target));
     return;
     case 7:
     this.button2 = ((System.Windows.Controls.Button)(target));
     
     #line 23 "..\..\..\Cust_Profile_View.xaml"
     this.button2.Click += new System.Windows.RoutedEventHandler(this.button2_Click);
     
     #line default
     #line hidden
     return;
     case 8:
     this.image1 = ((System.Windows.Controls.Image)(target));
     return;
     case 9:
     this.button3 = ((System.Windows.Controls.Button)(target));
     
     #line 25 "..\..\..\Cust_Profile_View.xaml"
     this.button3.Click += new System.Windows.RoutedEventHandler(this.button3_Click);
     
     #line default
     #line hidden
     return;
     case 10:
     this.menu1 = ((System.Windows.Controls.Menu)(target));
     return;
     case 11:
     
     #line 28 "..\..\..\Cust_Profile_View.xaml"
     ((System.Windows.Controls.MenuItem)(target)).Click += new System.Windows.RoutedEventHandler(this.MenuItem_Click);
     
     #line default
     #line hidden
     return;
     case 12:
     
     #line 34 "..\..\..\Cust_Profile_View.xaml"
     ((System.Windows.Controls.MenuItem)(target)).Click += new System.Windows.RoutedEventHandler(this.MenuItem_Click_1);
     
     #line default
     #line hidden
     return;
     case 13:
     
     #line 38 "..\..\..\Cust_Profile_View.xaml"
     ((System.Windows.Controls.MenuItem)(target)).Click += new System.Windows.RoutedEventHandler(this.MenuItem_Click_2);
     
     #line default
     #line hidden
     return;
     }
     this._contentLoaded = true;
 }
コード例 #53
0
        void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target)
        {
            switch (connectionId)
            {
            case 1:

            #line 40 "..\..\..\..\Views\DeliveryOrder\NewDeliveryOrder.xaml"
                ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.notes_Click);

            #line default
            #line hidden
                return;

            case 2:

            #line 47 "..\..\..\..\Views\DeliveryOrder\NewDeliveryOrder.xaml"
                ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.saveasdraft_Click);

            #line default
            #line hidden
                return;

            case 3:

            #line 54 "..\..\..\..\Views\DeliveryOrder\NewDeliveryOrder.xaml"
                ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.saveaspdf_Click);

            #line default
            #line hidden
                return;

            case 4:

            #line 61 "..\..\..\..\Views\DeliveryOrder\NewDeliveryOrder.xaml"
                ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.duplicate_Click);

            #line default
            #line hidden
                return;

            case 5:

            #line 68 "..\..\..\..\Views\DeliveryOrder\NewDeliveryOrder.xaml"
                ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.playtutorial_Click);

            #line default
            #line hidden
                return;

            case 6:

            #line 77 "..\..\..\..\Views\DeliveryOrder\NewDeliveryOrder.xaml"
                ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.Customer_Click);

            #line default
            #line hidden
                return;

            case 7:

            #line 83 "..\..\..\..\Views\DeliveryOrder\NewDeliveryOrder.xaml"
                ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.Dokumen_Click);

            #line default
            #line hidden
                return;

            case 8:

            #line 101 "..\..\..\..\Views\DeliveryOrder\NewDeliveryOrder.xaml"
                ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.Save_Click);

            #line default
            #line hidden
                return;

            case 9:

            #line 109 "..\..\..\..\Views\DeliveryOrder\NewDeliveryOrder.xaml"
                ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.StockList_Click);

            #line default
            #line hidden
                return;

            case 10:

            #line 117 "..\..\..\..\Views\DeliveryOrder\NewDeliveryOrder.xaml"
                ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.Print_Click);

            #line default
            #line hidden
                return;

            case 11:

            #line 125 "..\..\..\..\Views\DeliveryOrder\NewDeliveryOrder.xaml"
                ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.Cancel_Click);

            #line default
            #line hidden
                return;

            case 12:

            #line 133 "..\..\..\..\Views\DeliveryOrder\NewDeliveryOrder.xaml"
                ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.Product_Click);

            #line default
            #line hidden
                return;

            case 13:

            #line 138 "..\..\..\..\Views\DeliveryOrder\NewDeliveryOrder.xaml"
                ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.Service_Click);

            #line default
            #line hidden
                return;

            case 14:
                this.rbdepartmen = ((System.Windows.Controls.RadioButton)(target));

            #line 154 "..\..\..\..\Views\DeliveryOrder\NewDeliveryOrder.xaml"
                this.rbdepartmen.Checked += new System.Windows.RoutedEventHandler(this.Rbdepartmen_Checked);

            #line default
            #line hidden
                return;

            case 15:
                this.rbproyek = ((System.Windows.Controls.RadioButton)(target));

            #line 155 "..\..\..\..\Views\DeliveryOrder\NewDeliveryOrder.xaml"
                this.rbproyek.Checked += new System.Windows.RoutedEventHandler(this.Rbproyek_Checked);

            #line default
            #line hidden
                return;

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

            case 17:
                this.DGSKU = ((System.Windows.Controls.DataGrid)(target));
                return;

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

            case 19:
                this.dtValiditydate = ((System.Windows.Controls.DatePicker)(target));
                return;

            case 20:
                this.cbAnnual = ((System.Windows.Controls.ComboBox)(target));

            #line 356 "..\..\..\..\Views\DeliveryOrder\NewDeliveryOrder.xaml"
                this.cbAnnual.SelectionChanged += new System.Windows.Controls.SelectionChangedEventHandler(this.annual_selectedchange);

            #line default
            #line hidden
                return;

            case 21:
                this.srstaff = ((System.Windows.Controls.AutoCompleteBox)(target));

            #line 363 "..\..\..\..\Views\DeliveryOrder\NewDeliveryOrder.xaml"
                this.srstaff.SelectionChanged += new System.Windows.Controls.SelectionChangedEventHandler(this.staff_selectedchange);

            #line default
            #line hidden
                return;

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

            #line 375 "..\..\..\..\Views\DeliveryOrder\NewDeliveryOrder.xaml"
                this.txtAnnualFrequency.TextChanged += new System.Windows.Controls.TextChangedEventHandler(this.TxtAnnualFrequency_TextChanged);

            #line default
            #line hidden
                return;

            case 23:
                this.dtAnnualdate = ((System.Windows.Controls.DatePicker)(target));
                return;

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

            case 25:
                this.txtTotalTax = ((System.Windows.Controls.TextBlock)(target));
                return;

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

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

            case 28:
                this.srcustomer = ((System.Windows.Controls.AutoCompleteBox)(target));

            #line 392 "..\..\..\..\Views\DeliveryOrder\NewDeliveryOrder.xaml"
                this.srcustomer.SelectionChanged += new System.Windows.Controls.SelectionChangedEventHandler(this.customer_selectedchange);

            #line default
            #line hidden
                return;

            case 29:
                this.txtemail = ((System.Windows.Controls.TextBlock)(target));
                return;

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

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

            case 32:
                this.cbCurrency = ((System.Windows.Controls.ComboBox)(target));

            #line 421 "..\..\..\..\Views\DeliveryOrder\NewDeliveryOrder.xaml"
                this.cbCurrency.SelectionChanged += new System.Windows.Controls.SelectionChangedEventHandler(this.currency_selectedchange);

            #line default
            #line hidden
                return;

            case 33:
                this.srnodokumen = ((System.Windows.Controls.AutoCompleteBox)(target));

            #line 428 "..\..\..\..\Views\DeliveryOrder\NewDeliveryOrder.xaml"
                this.srnodokumen.SelectionChanged += new System.Windows.Controls.SelectionChangedEventHandler(this.dokumen_selectedchange);

            #line default
            #line hidden
                return;

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

            #line 440 "..\..\..\..\Views\DeliveryOrder\NewDeliveryOrder.xaml"
                this.txtDeliveryOrderNo.TextChanged += new System.Windows.Controls.TextChangedEventHandler(this.TxtDeliveryOrderNo_TextChanged);

            #line default
            #line hidden
                return;

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

            #line 441 "..\..\..\..\Views\DeliveryOrder\NewDeliveryOrder.xaml"
                this.cbSalesorder.SelectionChanged += new System.Windows.Controls.SelectionChangedEventHandler(this.Salesorder_selectedchange);

            #line default
            #line hidden
                return;

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

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

            #line 443 "..\..\..\..\Views\DeliveryOrder\NewDeliveryOrder.xaml"
                this.cbLocation.SelectionChanged += new System.Windows.Controls.SelectionChangedEventHandler(this.lokasi_selectedchange);

            #line default
            #line hidden
                return;

            case 38:
                this.cbDepartment = ((System.Windows.Controls.ComboBox)(target));

            #line 444 "..\..\..\..\Views\DeliveryOrder\NewDeliveryOrder.xaml"
                this.cbDepartment.SelectionChanged += new System.Windows.Controls.SelectionChangedEventHandler(this.department_selectionchange);

            #line default
            #line hidden
                return;

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

            #line 445 "..\..\..\..\Views\DeliveryOrder\NewDeliveryOrder.xaml"
                this.cbProyek.SelectionChanged += new System.Windows.Controls.SelectionChangedEventHandler(this.proyek_selectionchange);

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

            #line 40 "..\..\..\..\Views\PurchaseDocument\NewQuotationRequest.xaml"
                ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.notes_Click);

            #line default
            #line hidden
                return;

            case 2:

            #line 47 "..\..\..\..\Views\PurchaseDocument\NewQuotationRequest.xaml"
                ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.saveasdraft_Click);

            #line default
            #line hidden
                return;

            case 3:

            #line 54 "..\..\..\..\Views\PurchaseDocument\NewQuotationRequest.xaml"
                ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.saveaspdf_Click);

            #line default
            #line hidden
                return;

            case 4:

            #line 61 "..\..\..\..\Views\PurchaseDocument\NewQuotationRequest.xaml"
                ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.duplicate_Click);

            #line default
            #line hidden
                return;

            case 5:

            #line 68 "..\..\..\..\Views\PurchaseDocument\NewQuotationRequest.xaml"
                ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.playtutorial_Click);

            #line default
            #line hidden
                return;

            case 6:

            #line 77 "..\..\..\..\Views\PurchaseDocument\NewQuotationRequest.xaml"
                ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.Vendor_Click);

            #line default
            #line hidden
                return;

            case 7:

            #line 83 "..\..\..\..\Views\PurchaseDocument\NewQuotationRequest.xaml"
                ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.Document_Click);

            #line default
            #line hidden
                return;

            case 8:

            #line 95 "..\..\..\..\Views\PurchaseDocument\NewQuotationRequest.xaml"
                ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.produk_Click);

            #line default
            #line hidden
                return;

            case 9:

            #line 102 "..\..\..\..\Views\PurchaseDocument\NewQuotationRequest.xaml"
                ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.service_Click);

            #line default
            #line hidden
                return;

            case 10:

            #line 109 "..\..\..\..\Views\PurchaseDocument\NewQuotationRequest.xaml"
                ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.custom_Click);

            #line default
            #line hidden
                return;

            case 11:
                this.gg = ((System.Windows.Controls.Border)(target));
                return;

            case 12:
                this.srsku = ((System.Windows.Controls.AutoCompleteBox)(target));

            #line 120 "..\..\..\..\Views\PurchaseDocument\NewQuotationRequest.xaml"
                this.srsku.SelectionChanged += new System.Windows.Controls.SelectionChangedEventHandler(this.produk_selectedchange);

            #line default
            #line hidden
                return;

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

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

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

            #line 133 "..\..\..\..\Views\PurchaseDocument\NewQuotationRequest.xaml"
                this.txtharga.TextChanged += new System.Windows.Controls.TextChangedEventHandler(this.txtharga_TextChanged);

            #line default
            #line hidden

            #line 133 "..\..\..\..\Views\PurchaseDocument\NewQuotationRequest.xaml"
                this.txtharga.KeyDown += new System.Windows.Input.KeyEventHandler(this.TextBoxharga_KeyUp);

            #line default
            #line hidden
                return;

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

            #line 134 "..\..\..\..\Views\PurchaseDocument\NewQuotationRequest.xaml"
                this.txttotal.TextChanged += new System.Windows.Controls.TextChangedEventHandler(this.txttotal_TextChanged);

            #line default
            #line hidden

            #line 134 "..\..\..\..\Views\PurchaseDocument\NewQuotationRequest.xaml"
                this.txttotal.KeyDown += new System.Windows.Input.KeyEventHandler(this.TextBox_KeyUp);

            #line default
            #line hidden
                return;

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

            #line 135 "..\..\..\..\Views\PurchaseDocument\NewQuotationRequest.xaml"
                this.txttotalservice.TextChanged += new System.Windows.Controls.TextChangedEventHandler(this.txttotalservice_TextChanged);

            #line default
            #line hidden

            #line 135 "..\..\..\..\Views\PurchaseDocument\NewQuotationRequest.xaml"
                this.txttotalservice.KeyDown += new System.Windows.Input.KeyEventHandler(this.TextBoxservice_KeyUp);

            #line default
            #line hidden
                return;

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

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

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

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

            #line 144 "..\..\..\..\Views\PurchaseDocument\NewQuotationRequest.xaml"
                this.txttax1.TextChanged += new System.Windows.Controls.TextChangedEventHandler(this.txttax_TextChanged);

            #line default
            #line hidden
                return;

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

            case 23:
                this.txtdiskon = ((System.Windows.Controls.TextBlock)(target));
                return;

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

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

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

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

            case 28:
                this.DGSKUQuota = ((System.Windows.Controls.DataGrid)(target));

            #line 171 "..\..\..\..\Views\PurchaseDocument\NewQuotationRequest.xaml"
                this.DGSKUQuota.SelectionChanged += new System.Windows.Controls.SelectionChangedEventHandler(this.DG_selectedchange);

            #line default
            #line hidden
                return;

            case 29:
                this.DGSKUQuotaa = ((System.Windows.Controls.DataGrid)(target));
                return;

            case 30:

            #line 523 "..\..\..\..\Views\PurchaseDocument\NewQuotationRequest.xaml"
                ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.Paymenterm_Click);

            #line default
            #line hidden
                return;

            case 31:

            #line 541 "..\..\..\..\Views\PurchaseDocument\NewQuotationRequest.xaml"
                ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.SaveQuotationrequest_Click);

            #line default
            #line hidden
                return;

            case 32:

            #line 549 "..\..\..\..\Views\PurchaseDocument\NewQuotationRequest.xaml"
                ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.StockList_Click);

            #line default
            #line hidden
                return;

            case 33:

            #line 557 "..\..\..\..\Views\PurchaseDocument\NewQuotationRequest.xaml"
                ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.Print_Click);

            #line default
            #line hidden
                return;

            case 34:

            #line 565 "..\..\..\..\Views\PurchaseDocument\NewQuotationRequest.xaml"
                ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.Cancel_Click);

            #line default
            #line hidden
                return;

            case 35:

            #line 573 "..\..\..\..\Views\PurchaseDocument\NewQuotationRequest.xaml"
                ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.Product_Click);

            #line default
            #line hidden
                return;

            case 36:

            #line 578 "..\..\..\..\Views\PurchaseDocument\NewQuotationRequest.xaml"
                ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.Service_Click);

            #line default
            #line hidden
                return;

            case 37:
                this.rbdepartmen = ((System.Windows.Controls.RadioButton)(target));

            #line 611 "..\..\..\..\Views\PurchaseDocument\NewQuotationRequest.xaml"
                this.rbdepartmen.Checked += new System.Windows.RoutedEventHandler(this.rbdepartmen_Checked);

            #line default
            #line hidden
                return;

            case 38:
                this.rbprojec = ((System.Windows.Controls.RadioButton)(target));

            #line 612 "..\..\..\..\Views\PurchaseDocument\NewQuotationRequest.xaml"
                this.rbprojec.Checked += new System.Windows.RoutedEventHandler(this.rbprojec_Checked);

            #line default
            #line hidden
                return;

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

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

            case 41:
                this.chkinclusive = ((System.Windows.Controls.CheckBox)(target));
                return;

            case 42:
                this.srvendor = ((System.Windows.Controls.AutoCompleteBox)(target));

            #line 622 "..\..\..\..\Views\PurchaseDocument\NewQuotationRequest.xaml"
                this.srvendor.SelectionChanged += new System.Windows.Controls.SelectionChangedEventHandler(this.vendor_selectedchange);

            #line default
            #line hidden
                return;

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

            case 44:
                this.txthp = ((System.Windows.Controls.TextBlock)(target));
                return;

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

            case 46:
                this.cbCurrency = ((System.Windows.Controls.ComboBox)(target));

            #line 651 "..\..\..\..\Views\PurchaseDocument\NewQuotationRequest.xaml"
                this.cbCurrency.SelectionChanged += new System.Windows.Controls.SelectionChangedEventHandler(this.currency_selectedchange);

            #line default
            #line hidden
                return;

            case 47:
                this.srnodokumen = ((System.Windows.Controls.AutoCompleteBox)(target));

            #line 658 "..\..\..\..\Views\PurchaseDocument\NewQuotationRequest.xaml"
                this.srnodokumen.SelectionChanged += new System.Windows.Controls.SelectionChangedEventHandler(this.dokumen_selectedchange);

            #line default
            #line hidden
                return;

            case 48:
                this.txtQuotationNo = ((System.Windows.Controls.TextBox)(target));

            #line 670 "..\..\..\..\Views\PurchaseDocument\NewQuotationRequest.xaml"
                this.txtQuotationNo.TextChanged += new System.Windows.Controls.TextChangedEventHandler(this.TxtQuotationNo_TextChanged);

            #line default
            #line hidden
                return;

            case 49:
                this.cbRequestNo = ((System.Windows.Controls.ComboBox)(target));

            #line 671 "..\..\..\..\Views\PurchaseDocument\NewQuotationRequest.xaml"
                this.cbRequestNo.SelectionChanged += new System.Windows.Controls.SelectionChangedEventHandler(this.shoping_selectedchange);

            #line default
            #line hidden
                return;

            case 50:
                this.txttotalprodukbeforetax = ((System.Windows.Controls.TextBlock)(target));
                return;

            case 51:
                this.txttotaljasabeforetax = ((System.Windows.Controls.TextBlock)(target));
                return;

            case 52:
                this.txttotalbeforetax = ((System.Windows.Controls.TextBlock)(target));
                return;

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

            case 54:
                this.cbLocation = ((System.Windows.Controls.ComboBox)(target));

            #line 676 "..\..\..\..\Views\PurchaseDocument\NewQuotationRequest.xaml"
                this.cbLocation.SelectionChanged += new System.Windows.Controls.SelectionChangedEventHandler(this.lokasi_selectedchange);

            #line default
            #line hidden
                return;

            case 55:
                this.cbDepartment = ((System.Windows.Controls.ComboBox)(target));

            #line 677 "..\..\..\..\Views\PurchaseDocument\NewQuotationRequest.xaml"
                this.cbDepartment.SelectionChanged += new System.Windows.Controls.SelectionChangedEventHandler(this.department_selectionchange);

            #line default
            #line hidden
                return;

            case 56:
                this.cbProyek = ((System.Windows.Controls.ComboBox)(target));

            #line 678 "..\..\..\..\Views\PurchaseDocument\NewQuotationRequest.xaml"
                this.cbProyek.SelectionChanged += new System.Windows.Controls.SelectionChangedEventHandler(this.proyek_selectionchange);

            #line default
            #line hidden
                return;

            case 57:
                this.chkannual = ((System.Windows.Controls.CheckBox)(target));
                return;

            case 58:
                this.dtValidaty = ((System.Windows.Controls.DatePicker)(target));
                return;

            case 59:
                this.cbAnnual = ((System.Windows.Controls.ComboBox)(target));

            #line 681 "..\..\..\..\Views\PurchaseDocument\NewQuotationRequest.xaml"
                this.cbAnnual.SelectionChanged += new System.Windows.Controls.SelectionChangedEventHandler(this.annual_selectedchange);

            #line default
            #line hidden
                return;

            case 60:
                this.srstaff = ((System.Windows.Controls.AutoCompleteBox)(target));

            #line 688 "..\..\..\..\Views\PurchaseDocument\NewQuotationRequest.xaml"
                this.srstaff.SelectionChanged += new System.Windows.Controls.SelectionChangedEventHandler(this.staff_selectedchange);

            #line default
            #line hidden
                return;

            case 61:
                this.txtAnnualFrequency = ((System.Windows.Controls.TextBox)(target));

            #line 700 "..\..\..\..\Views\PurchaseDocument\NewQuotationRequest.xaml"
                this.txtAnnualFrequency.TextChanged += new System.Windows.Controls.TextChangedEventHandler(this.TxtAnnualFrequency_TextChanged);

            #line default
            #line hidden
                return;

            case 62:
                this.rbpayment = ((System.Windows.Controls.RadioButton)(target));

            #line 701 "..\..\..\..\Views\PurchaseDocument\NewQuotationRequest.xaml"
                this.rbpayment.Checked += new System.Windows.RoutedEventHandler(this.rbpayment_Checked);

            #line default
            #line hidden
                return;

            case 63:
                this.rbcash = ((System.Windows.Controls.RadioButton)(target));
                return;

            case 64:
                this.cbPayment = ((System.Windows.Controls.ComboBox)(target));

            #line 703 "..\..\..\..\Views\PurchaseDocument\NewQuotationRequest.xaml"
                this.cbPayment.SelectionChanged += new System.Windows.Controls.SelectionChangedEventHandler(this.payment_selectedchange);

            #line default
            #line hidden
                return;

            case 65:
                this.cbCash = ((System.Windows.Controls.ComboBox)(target));
                return;

            case 66:
                this.dtAnnual = ((System.Windows.Controls.DatePicker)(target));
                return;

            case 67:
                this.txtuangmuka = ((System.Windows.Controls.TextBlock)(target));
                return;

            case 68:
                this.txtTotalprodukTax = ((System.Windows.Controls.TextBlock)(target));
                return;

            case 69:
                this.txtTotaljasaTax = ((System.Windows.Controls.TextBlock)(target));
                return;

            case 70:
                this.txtTotalTax = ((System.Windows.Controls.TextBlock)(target));
                return;

            case 71:
                this.txtAfterTotalTax = ((System.Windows.Controls.TextBlock)(target));
                return;

            case 72:
                this.txtPaid = ((System.Windows.Controls.TextBlock)(target));
                return;

            case 73:
                this.txtInstallments = ((System.Windows.Controls.TextBlock)(target));
                return;

            case 74:
                this.txtDuedate = ((System.Windows.Controls.TextBlock)(target));
                return;
            }
            this._contentLoaded = true;
        }
コード例 #55
0
 /* Returns the position of the selected airport.
  *
  * Iterates throught the full airport list to match
  * airport selected in the box provided.
  */
 private int MatchAirport(AutoCompleteBox SearchBox)
 {
     for (int i = 0; i < airportsFullList.Count; i++)
     {
         if (SearchBox.Text.Equals(airportsFullList.ElementAt(i)))
         {
             return i;
         }
     }
     return -1;
 }
コード例 #56
0
 void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) {
     switch (connectionId)
     {
     case 1:
     
     #line 14 "..\..\..\Windows\Window_AddEditContact.xaml"
     ((CMLibrary.Windows.Window_AddEditContact)(target)).Loaded += new System.Windows.RoutedEventHandler(this.Window_Loaded);
     
     #line default
     #line hidden
     return;
     case 2:
     this.bottomRight = ((System.Windows.Shapes.Rectangle)(target));
     return;
     case 3:
     this.bottom = ((System.Windows.Shapes.Rectangle)(target));
     return;
     case 4:
     this.bottomLeft = ((System.Windows.Shapes.Rectangle)(target));
     return;
     case 5:
     this.right = ((System.Windows.Shapes.Rectangle)(target));
     return;
     case 6:
     this.top = ((System.Windows.Shapes.Rectangle)(target));
     return;
     case 7:
     this.left = ((System.Windows.Shapes.Rectangle)(target));
     return;
     case 8:
     this.titleBarAddContact = ((System.Windows.Controls.DockPanel)(target));
     return;
     case 9:
     
     #line 191 "..\..\..\Windows\Window_AddEditContact.xaml"
     ((System.Windows.Documents.Hyperlink)(target)).Click += new System.Windows.RoutedEventHandler(this.TriggerClose);
     
     #line default
     #line hidden
     return;
     case 10:
     this.title = ((System.Windows.Controls.TextBlock)(target));
     return;
     case 11:
     this.tbox_contact_id = ((System.Windows.Controls.TextBox)(target));
     return;
     case 12:
     this.tbox_firstname = ((System.Windows.Controls.TextBox)(target));
     return;
     case 13:
     this.tbox_middlename = ((System.Windows.Controls.TextBox)(target));
     return;
     case 14:
     this.tbox_lastname = ((System.Windows.Controls.TextBox)(target));
     return;
     case 15:
     this.tbox_email = ((System.Windows.Controls.AutoCompleteBox)(target));
     return;
     case 16:
     this.tbox_fax = ((System.Windows.Controls.AutoCompleteBox)(target));
     return;
     case 17:
     this.tbox_group = ((CMLibrary.Components.CMSearchTextBox)(target));
     return;
     case 18:
     this.uc_FloatingList = ((CMLibrary.Fragment.Popup_FloatingList)(target));
     return;
     case 19:
     this.DuplicateOptionsPanel = ((System.Windows.Controls.Grid)(target));
     return;
     case 20:
     this.radio_btn_replace_with_new = ((System.Windows.Controls.RadioButton)(target));
     return;
     case 21:
     this.radio_btn_allow_duplicate = ((System.Windows.Controls.RadioButton)(target));
     return;
     case 22:
     this.radio_btn_do_not_import = ((System.Windows.Controls.RadioButton)(target));
     return;
     case 23:
     this.StatusBlock = ((System.Windows.Controls.TextBlock)(target));
     return;
     case 24:
     this.btn_save = ((System.Windows.Controls.Button)(target));
     
     #line 370 "..\..\..\Windows\Window_AddEditContact.xaml"
     this.btn_save.Click += new System.Windows.RoutedEventHandler(this.btn_save_Click);
     
     #line default
     #line hidden
     return;
     case 25:
     this.txt_btn_save = ((System.Windows.Controls.TextBlock)(target));
     return;
     case 26:
     this.btn_cancel = ((System.Windows.Controls.Button)(target));
     
     #line 376 "..\..\..\Windows\Window_AddEditContact.xaml"
     this.btn_cancel.Click += new System.Windows.RoutedEventHandler(this.btn_cancel_Click);
     
     #line default
     #line hidden
     return;
     }
     this._contentLoaded = true;
 }
コード例 #57
0
        void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target)
        {
            switch (connectionId)
            {
            case 1:
                this.txtMedicine = ((System.Windows.Controls.AutoCompleteBox)(target));
                return;

            case 2:

            #line 142 "..\..\..\..\Views\StudentDetails.xaml"
                ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.cmdSearchPopUp);

            #line default
            #line hidden
                return;

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

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

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

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

            #line 237 "..\..\..\..\Views\StudentDetails.xaml"
                this.txtAge.PreviewTextInput += new System.Windows.Input.TextCompositionEventHandler(this.TextBox_PreviewTextInput_1);

            #line default
            #line hidden
                return;

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

            case 8:

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

            #line default
            #line hidden
                return;

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

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

            case 11:
                this.cmbFathersOccupation = ((System.Windows.Controls.ComboBox)(target));
                return;

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

            case 13:
                this.cmbMothersOccupation = ((System.Windows.Controls.ComboBox)(target));
                return;

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

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

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

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

            #line 295 "..\..\..\..\Views\StudentDetails.xaml"
                this.txtEmailAddress.PreviewTextInput += new System.Windows.Input.TextCompositionEventHandler(this.txtEmailAddress_PreviewTextInput);

            #line default
            #line hidden

            #line 295 "..\..\..\..\Views\StudentDetails.xaml"
                this.txtEmailAddress.LostFocus += new System.Windows.RoutedEventHandler(this.txtEmailAddress_LostFocus);

            #line default
            #line hidden
                return;

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

            #line 296 "..\..\..\..\Views\StudentDetails.xaml"
                this.txtMobileNumber.PreviewTextInput += new System.Windows.Input.TextCompositionEventHandler(this.TextBox_PreviewTextInput_1);

            #line default
            #line hidden
                return;

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

            #line 297 "..\..\..\..\Views\StudentDetails.xaml"
                this.txtEmergencyContactNumber.PreviewTextInput += new System.Windows.Input.TextCompositionEventHandler(this.TextBox_PreviewTextInput_1);

            #line default
            #line hidden
                return;

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

            case 21:
                this.cmbClassRoom = ((System.Windows.Controls.ComboBox)(target));
                return;

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

            case 23:

            #line 335 "..\..\..\..\Views\StudentDetails.xaml"
                ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.btnUploadDocument);

            #line default
            #line hidden
                return;
            }
            this._contentLoaded = true;
        }
コード例 #58
0
 void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) {
     switch (connectionId)
     {
     case 1:
     
     #line 20 "..\..\..\Windows\DeleteVertexWindow.xaml"
     ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.BtnDeleteVertex);
     
     #line default
     #line hidden
     return;
     case 2:
     
     #line 21 "..\..\..\Windows\DeleteVertexWindow.xaml"
     ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.Cancel);
     
     #line default
     #line hidden
     return;
     case 3:
     this.autocomplete = ((System.Windows.Controls.AutoCompleteBox)(target));
     
     #line 23 "..\..\..\Windows\DeleteVertexWindow.xaml"
     this.autocomplete.MouseEnter += new System.Windows.Input.MouseEventHandler(this.Autocomplete_MouseEnter);
     
     #line default
     #line hidden
     return;
     }
     this._contentLoaded = true;
 }
コード例 #59
0
ファイル: Project.g.i.cs プロジェクト: reyukowpf/alpha
        void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target)
        {
            switch (connectionId)
            {
            case 1:
                this.LIProject = ((System.Windows.Controls.ListView)(target));

            #line 41 "..\..\..\..\Views\Project\Project.xaml"
                this.LIProject.SelectionChanged += new System.Windows.Controls.SelectionChangedEventHandler(this.LIProject_SelectionChanged);

            #line default
            #line hidden
                return;

            case 2:

            #line 71 "..\..\..\..\Views\Project\Project.xaml"
                ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.NewDocument_Click);

            #line default
            #line hidden
                return;

            case 3:

            #line 78 "..\..\..\..\Views\Project\Project.xaml"
                ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.NewInternalNotes_Click);

            #line default
            #line hidden
                return;

            case 4:

            #line 85 "..\..\..\..\Views\Project\Project.xaml"
                ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.ViewInactived_Click);

            #line default
            #line hidden
                return;

            case 5:

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

            #line default
            #line hidden
                return;

            case 6:

            #line 99 "..\..\..\..\Views\Project\Project.xaml"
                ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.playtutorial_Click);

            #line default
            #line hidden
                return;

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

            #line 121 "..\..\..\..\Views\Project\Project.xaml"
                this.BtnNewProject.Click += new System.Windows.RoutedEventHandler(this.BtnNewProject_Click);

            #line default
            #line hidden
                return;

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

            #line 129 "..\..\..\..\Views\Project\Project.xaml"
                this.BtnEditProject.Click += new System.Windows.RoutedEventHandler(this.BtnEditProject_Click);

            #line default
            #line hidden
                return;

            case 9:

            #line 136 "..\..\..\..\Views\Project\Project.xaml"
                ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.Print_Clicks);

            #line default
            #line hidden
                return;

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

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

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

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

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

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

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

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

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

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

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

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

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

            case 23:
                this.DGDocumentCustomer = ((System.Windows.Controls.DataGrid)(target));
                return;

            case 24:
                this.DGNoteCustomer = ((System.Windows.Controls.DataGrid)(target));
                return;
            }
            this._contentLoaded = true;
        }
コード例 #60
0
 void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) {
     switch (connectionId)
     {
     case 1:
     this.Status = ((System.Windows.Controls.Label)(target));
     return;
     case 2:
     this.AutoCompleteTextBox1 = ((System.Windows.Controls.AutoCompleteBox)(target));
     
     #line 79 "..\..\..\..\DataControls\Specification\Copy of SpecificationUc.xaml"
     this.AutoCompleteTextBox1.KeyDown += new System.Windows.Input.KeyEventHandler(this.AutoCompleteTextBox1_KeyDown);
     
     #line default
     #line hidden
     
     #line 79 "..\..\..\..\DataControls\Specification\Copy of SpecificationUc.xaml"
     this.AutoCompleteTextBox1.SelectionChanged += new System.Windows.Controls.SelectionChangedEventHandler(this.AutoCompleteTextBox1_SelectionChanged);
     
     #line default
     #line hidden
     
     #line 79 "..\..\..\..\DataControls\Specification\Copy of SpecificationUc.xaml"
     this.AutoCompleteTextBox1.TextChanged += new System.Windows.RoutedEventHandler(this.AutoCompleteTextBox1_TextChanged);
     
     #line default
     #line hidden
     
     #line 79 "..\..\..\..\DataControls\Specification\Copy of SpecificationUc.xaml"
     this.AutoCompleteTextBox1.DropDownClosed += new System.Windows.RoutedPropertyChangedEventHandler<bool>(this.AutoCompleteTextBox1_DropDownClosed);
     
     #line default
     #line hidden
     return;
     case 3:
     this.Найти = ((System.Windows.Controls.Button)(target));
     
     #line 80 "..\..\..\..\DataControls\Specification\Copy of SpecificationUc.xaml"
     this.Найти.Click += new System.Windows.RoutedEventHandler(this.Button_Click_3);
     
     #line default
     #line hidden
     return;
     case 4:
     this.ВыгрузитьВXml = ((System.Windows.Controls.Button)(target));
     
     #line 82 "..\..\..\..\DataControls\Specification\Copy of SpecificationUc.xaml"
     this.ВыгрузитьВXml.Click += new System.Windows.RoutedEventHandler(this.ВыгрузитьВXml_Click);
     
     #line default
     #line hidden
     
     #line 83 "..\..\..\..\DataControls\Specification\Copy of SpecificationUc.xaml"
     this.ВыгрузитьВXml.IsEnabledChanged += new System.Windows.DependencyPropertyChangedEventHandler(this.ВыгрузитьВXml_IsEnabledChanged);
     
     #line default
     #line hidden
     return;
     case 5:
     this.IncludeAsms = ((System.Windows.Controls.CheckBox)(target));
     return;
     case 6:
     this.ПолучитьПереченьДеталей = ((System.Windows.Controls.CheckBox)(target));
     
     #line 86 "..\..\..\..\DataControls\Specification\Copy of SpecificationUc.xaml"
     this.ПолучитьПереченьДеталей.Click += new System.Windows.RoutedEventHandler(this.ПолучитьПереченьДеталей_Click);
     
     #line default
     #line hidden
     
     #line 86 "..\..\..\..\DataControls\Specification\Copy of SpecificationUc.xaml"
     this.ПолучитьПереченьДеталей.IsEnabledChanged += new System.Windows.DependencyPropertyChangedEventHandler(this.ПолучитьПереченьДеталей_IsEnabledChanged);
     
     #line default
     #line hidden
     
     #line 86 "..\..\..\..\DataControls\Specification\Copy of SpecificationUc.xaml"
     this.ПолучитьПереченьДеталей.Unchecked += new System.Windows.RoutedEventHandler(this.ПолучитьПереченьДеталей_Unchecked);
     
     #line default
     #line hidden
     
     #line 86 "..\..\..\..\DataControls\Specification\Copy of SpecificationUc.xaml"
     this.ПолучитьПереченьДеталей.Checked += new System.Windows.RoutedEventHandler(this.ПолучитьПереченьДеталей_Checked);
     
     #line default
     #line hidden
     return;
     case 7:
     this.КонфигурацияLbl = ((System.Windows.Controls.Label)(target));
     return;
     case 8:
     this.Конфигурация = ((System.Windows.Controls.ComboBox)(target));
     
     #line 88 "..\..\..\..\DataControls\Specification\Copy of SpecificationUc.xaml"
     this.Конфигурация.SelectionChanged += new System.Windows.Controls.SelectionChangedEventHandler(this.Конфигурация_SelectionChanged);
     
     #line default
     #line hidden
     
     #line 88 "..\..\..\..\DataControls\Specification\Copy of SpecificationUc.xaml"
     this.Конфигурация.IsVisibleChanged += new System.Windows.DependencyPropertyChangedEventHandler(this.Конфигурация_IsVisibleChanged);
     
     #line default
     #line hidden
     return;
     case 9:
     this.ТаблицаСпецификации = ((System.Windows.Controls.DataGrid)(target));
     return;
     case 10:
     this.СпецификацияТаблица = ((System.Windows.Controls.GroupBox)(target));
     return;
     case 11:
     this.ИмяСборки1 = ((System.Windows.Controls.TextBox)(target));
     
     #line 108 "..\..\..\..\DataControls\Specification\Copy of SpecificationUc.xaml"
     this.ИмяСборки1.KeyDown += new System.Windows.Input.KeyEventHandler(this.ИмяСборки1_KeyDown);
     
     #line default
     #line hidden
     
     #line 108 "..\..\..\..\DataControls\Specification\Copy of SpecificationUc.xaml"
     this.ИмяСборки1.LayoutUpdated += new System.EventHandler(this.ИмяСборки1_LayoutUpdated);
     
     #line default
     #line hidden
     return;
     case 12:
     this.Поиск = ((System.Windows.Controls.Button)(target));
     
     #line 109 "..\..\..\..\DataControls\Specification\Copy of SpecificationUc.xaml"
     this.Поиск.Click += new System.Windows.RoutedEventHandler(this.Поиск_Click);
     
     #line default
     #line hidden
     return;
     case 13:
     this.ВыгрузитьСпецификацию = ((System.Windows.Controls.Button)(target));
     
     #line 110 "..\..\..\..\DataControls\Specification\Copy of SpecificationUc.xaml"
     this.ВыгрузитьСпецификацию.Click += new System.Windows.RoutedEventHandler(this.ВыгрузитьСпецификацию_Click);
     
     #line default
     #line hidden
     return;
     case 14:
     this.Конфигурации = ((System.Windows.Controls.ComboBox)(target));
     
     #line 111 "..\..\..\..\DataControls\Specification\Copy of SpecificationUc.xaml"
     this.Конфигурации.LayoutUpdated += new System.EventHandler(this.Конфигурации_LayoutUpdated);
     
     #line default
     #line hidden
     return;
     case 15:
     this.AsmComponents = ((System.Windows.Controls.Grid)(target));
     return;
     case 16:
     this.PrtGrid = ((System.Windows.Controls.Grid)(target));
     return;
     case 17:
     this.PrtMessage2 = ((System.Windows.Controls.Grid)(target));
     return;
     case 18:
     this.SelectedPart = ((System.Windows.Controls.DataGrid)(target));
     
     #line 153 "..\..\..\..\DataControls\Specification\Copy of SpecificationUc.xaml"
     this.SelectedPart.LoadingRow += new System.EventHandler<System.Windows.Controls.DataGridRowEventArgs>(this.Table_LoadingRow);
     
     #line default
     #line hidden
     return;
     case 19:
     this.PartPropsConfig = ((System.Windows.Controls.Grid)(target));
     return;
     case 20:
     this.ConfigList = ((System.Windows.Controls.ComboBox)(target));
     
     #line 207 "..\..\..\..\DataControls\Specification\Copy of SpecificationUc.xaml"
     this.ConfigList.LayoutUpdated += new System.EventHandler(this.MaterialsList_LayoutUpdated);
     
     #line default
     #line hidden
     return;
     case 21:
     this.AcceptConfig = ((System.Windows.Controls.Button)(target));
     return;
     case 22:
     this.BeginUpdatePartPropConfig = ((System.Windows.Controls.Button)(target));
     
     #line 209 "..\..\..\..\DataControls\Specification\Copy of SpecificationUc.xaml"
     this.BeginUpdatePartPropConfig.Click += new System.Windows.RoutedEventHandler(this.BeginUpdatePartProp_Click);
     
     #line default
     #line hidden
     return;
     case 23:
     this.PartProps = ((System.Windows.Controls.Grid)(target));
     return;
     case 24:
     this.MaterialsList = ((System.Windows.Controls.ComboBox)(target));
     
     #line 220 "..\..\..\..\DataControls\Specification\Copy of SpecificationUc.xaml"
     this.MaterialsList.LayoutUpdated += new System.EventHandler(this.MaterialsList_LayoutUpdated);
     
     #line default
     #line hidden
     return;
     case 25:
     this.Accept = ((System.Windows.Controls.Button)(target));
     
     #line 221 "..\..\..\..\DataControls\Specification\Copy of SpecificationUc.xaml"
     this.Accept.Click += new System.Windows.RoutedEventHandler(this.Accept_Click);
     
     #line default
     #line hidden
     return;
     case 26:
     this.BeginUpdatePartProp = ((System.Windows.Controls.Button)(target));
     
     #line 222 "..\..\..\..\DataControls\Specification\Copy of SpecificationUc.xaml"
     this.BeginUpdatePartProp.Click += new System.Windows.RoutedEventHandler(this.BeginUpdatePartProp_Click);
     
     #line default
     #line hidden
     return;
     case 27:
     this.PartPropsCopy = ((System.Windows.Controls.Grid)(target));
     return;
     case 28:
     this.ThiknessList = ((System.Windows.Controls.ComboBox)(target));
     
     #line 233 "..\..\..\..\DataControls\Specification\Copy of SpecificationUc.xaml"
     this.ThiknessList.LayoutUpdated += new System.EventHandler(this.MaterialsList_LayoutUpdated);
     
     #line default
     #line hidden
     return;
     case 29:
     this.AcceptThikness = ((System.Windows.Controls.Button)(target));
     
     #line 234 "..\..\..\..\DataControls\Specification\Copy of SpecificationUc.xaml"
     this.AcceptThikness.Click += new System.Windows.RoutedEventHandler(this.Accept_Click);
     
     #line default
     #line hidden
     return;
     case 30:
     this.BeginUpdatePartPropThikness = ((System.Windows.Controls.Button)(target));
     
     #line 235 "..\..\..\..\DataControls\Specification\Copy of SpecificationUc.xaml"
     this.BeginUpdatePartPropThikness.Click += new System.Windows.RoutedEventHandler(this.BeginUpdatePartProp_Click);
     
     #line default
     #line hidden
     return;
     case 31:
     this.СосотяниеСборки = ((System.Windows.Controls.Label)(target));
     return;
     case 32:
     this.FilterTextBox = ((System.Windows.Controls.TextBox)(target));
     
     #line 270 "..\..\..\..\DataControls\Specification\Copy of SpecificationUc.xaml"
     this.FilterTextBox.TextChanged += new System.Windows.Controls.TextChangedEventHandler(this.FilterTextBox_OnSelectionChanged);
     
     #line default
     #line hidden
     return;
     case 33:
     this.AssemblyInfo = ((System.Windows.Controls.Label)(target));
     
     #line 273 "..\..\..\..\DataControls\Specification\Copy of SpecificationUc.xaml"
     this.AssemblyInfo.LayoutUpdated += new System.EventHandler(this.AssemblyInfo_LayoutUpdated);
     
     #line default
     #line hidden
     return;
     case 34:
     this.BomTablePrt = ((System.Windows.Controls.DataGrid)(target));
     
     #line 280 "..\..\..\..\DataControls\Specification\Copy of SpecificationUc.xaml"
     this.BomTablePrt.LoadingRow += new System.EventHandler<System.Windows.Controls.DataGridRowEventArgs>(this.Table_LoadingRow);
     
     #line default
     #line hidden
     
     #line 281 "..\..\..\..\DataControls\Specification\Copy of SpecificationUc.xaml"
     this.BomTablePrt.MouseDoubleClick += new System.Windows.Input.MouseButtonEventHandler(this.TablePrt_MouseDoubleClick);
     
     #line default
     #line hidden
     
     #line 281 "..\..\..\..\DataControls\Specification\Copy of SpecificationUc.xaml"
     this.BomTablePrt.SelectionChanged += new System.Windows.Controls.SelectionChangedEventHandler(this.TablePrt_SelectionChanged);
     
     #line default
     #line hidden
     return;
     case 35:
     this.BeginUpdate1 = ((System.Windows.Controls.Button)(target));
     
     #line 337 "..\..\..\..\DataControls\Specification\Copy of SpecificationUc.xaml"
     this.BeginUpdate1.Click += new System.Windows.RoutedEventHandler(this.BeginUpdate1_Click);
     
     #line default
     #line hidden
     return;
     case 36:
     this.SelectedPrtGrid = ((System.Windows.Controls.Grid)(target));
     return;
     case 37:
     this.BomTableSelectedPrt = ((System.Windows.Controls.DataGrid)(target));
     
     #line 348 "..\..\..\..\DataControls\Specification\Copy of SpecificationUc.xaml"
     this.BomTableSelectedPrt.LoadingRow += new System.EventHandler<System.Windows.Controls.DataGridRowEventArgs>(this.Table_LoadingRow);
     
     #line default
     #line hidden
     
     #line 348 "..\..\..\..\DataControls\Specification\Copy of SpecificationUc.xaml"
     this.BomTableSelectedPrt.LayoutUpdated += new System.EventHandler(this.BomTableSelectedPrt_LayoutUpdated);
     
     #line default
     #line hidden
     
     #line 348 "..\..\..\..\DataControls\Specification\Copy of SpecificationUc.xaml"
     this.BomTableSelectedPrt.SelectionChanged += new System.Windows.Controls.SelectionChangedEventHandler(this.BomTableSelectedPrt_SelectionChanged);
     
     #line default
     #line hidden
     return;
     case 38:
     this.PrtMessage1 = ((System.Windows.Controls.Grid)(target));
     return;
     case 39:
     this.BeginUpdate = ((System.Windows.Controls.Button)(target));
     
     #line 369 "..\..\..\..\DataControls\Specification\Copy of SpecificationUc.xaml"
     this.BeginUpdate.Click += new System.Windows.RoutedEventHandler(this.BeginUpdate_Click);
     
     #line default
     #line hidden
     return;
     case 40:
     this.УдалитьВыбранную = ((System.Windows.Controls.Button)(target));
     
     #line 371 "..\..\..\..\DataControls\Specification\Copy of SpecificationUc.xaml"
     this.УдалитьВыбранную.Click += new System.Windows.RoutedEventHandler(this.УдалитьВыбранную_Click);
     
     #line default
     #line hidden
     return;
     case 41:
     this.ClearList = ((System.Windows.Controls.Button)(target));
     
     #line 372 "..\..\..\..\DataControls\Specification\Copy of SpecificationUc.xaml"
     this.ClearList.Click += new System.Windows.RoutedEventHandler(this.ClearList_Click);
     
     #line default
     #line hidden
     return;
     case 42:
     this.UpdateCutList = ((System.Windows.Controls.CheckBox)(target));
     
     #line 375 "..\..\..\..\DataControls\Specification\Copy of SpecificationUc.xaml"
     this.UpdateCutList.Click += new System.Windows.RoutedEventHandler(this.UpdateCutList_Click);
     
     #line default
     #line hidden
     return;
     case 43:
     this.MakeDxf = ((System.Windows.Controls.CheckBox)(target));
     return;
     case 44:
     this.Exp2 = ((System.Windows.Controls.GroupBox)(target));
     return;
     case 45:
     
     #line 391 "..\..\..\..\DataControls\Specification\Copy of SpecificationUc.xaml"
     ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.Button_Click_1);
     
     #line default
     #line hidden
     return;
     case 46:
     this.PartFile = ((System.Windows.Controls.TextBox)(target));
     return;
     case 47:
     
     #line 393 "..\..\..\..\DataControls\Specification\Copy of SpecificationUc.xaml"
     ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.Registration);
     
     #line default
     #line hidden
     return;
     case 48:
     this.Exp3 = ((System.Windows.Controls.GroupBox)(target));
     return;
     case 49:
     
     #line 403 "..\..\..\..\DataControls\Specification\Copy of SpecificationUc.xaml"
     ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.Выгрузить_PDF);
     
     #line default
     #line hidden
     return;
     case 50:
     this.DrawingFile = ((System.Windows.Controls.TextBox)(target));
     return;
     case 51:
     
     #line 405 "..\..\..\..\DataControls\Specification\Copy of SpecificationUc.xaml"
     ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.AddToPdm);
     
     #line default
     #line hidden
     return;
     case 52:
     this.Exp1 = ((System.Windows.Controls.GroupBox)(target));
     return;
     case 53:
     
     #line 418 "..\..\..\..\DataControls\Specification\Copy of SpecificationUc.xaml"
     ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.ПоискEpdm);
     
     #line default
     #line hidden
     return;
     case 54:
     this.ИмяПоиска = ((System.Windows.Controls.TextBox)(target));
     return;
     case 55:
     this.СписокНайденныхФайлов = ((System.Windows.Controls.ComboBox)(target));
     return;
     case 56:
     this.CBox = ((System.Windows.Controls.ComboBox)(target));
     return;
     case 57:
     this.ДобавитьТаблицу = ((System.Windows.Controls.Button)(target));
     
     #line 431 "..\..\..\..\DataControls\Specification\Copy of SpecificationUc.xaml"
     this.ДобавитьТаблицу.Click += new System.Windows.RoutedEventHandler(this.ДобавитьТаблицу_Click);
     
     #line default
     #line hidden
     return;
     case 58:
     this.ПереченьДеталей = ((System.Windows.Controls.GroupBox)(target));
     return;
     case 59:
     this.PartsList = ((System.Windows.Controls.DataGrid)(target));
     
     #line 443 "..\..\..\..\DataControls\Specification\Copy of SpecificationUc.xaml"
     this.PartsList.LoadingRow += new System.EventHandler<System.Windows.Controls.DataGridRowEventArgs>(this.PartsList_LoadingRow);
     
     #line default
     #line hidden
     
     #line 443 "..\..\..\..\DataControls\Specification\Copy of SpecificationUc.xaml"
     this.PartsList.SelectionChanged += new System.Windows.Controls.SelectionChangedEventHandler(this.PartsList_SelectionChanged);
     
     #line default
     #line hidden
     return;
     case 60:
     
     #line 446 "..\..\..\..\DataControls\Specification\Copy of SpecificationUc.xaml"
     ((System.Windows.Controls.MenuItem)(target)).Click += new System.Windows.RoutedEventHandler(this.MenuItem_Click);
     
     #line default
     #line hidden
     return;
     case 61:
     
     #line 447 "..\..\..\..\DataControls\Specification\Copy of SpecificationUc.xaml"
     ((System.Windows.Controls.MenuItem)(target)).Click += new System.Windows.RoutedEventHandler(this.OpenFile);
     
     #line default
     #line hidden
     return;
     case 62:
     this.XmlParts = ((System.Windows.Controls.Button)(target));
     
     #line 457 "..\..\..\..\DataControls\Specification\Copy of SpecificationUc.xaml"
     this.XmlParts.Click += new System.Windows.RoutedEventHandler(this.XMLParts_Click);
     
     #line default
     #line hidden
     return;
     }
     this._contentLoaded = true;
 }