void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target)
        {
            switch (connectionId)
            {
            case 1:
                this.ApuntesWindow1 = ((CUADERNODELPROFESOR.ApuntesWindow)(target));
                return;

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

            case 3:
                this.txtNombreApuntes = ((System.Windows.Controls.PasswordBox)(target));
                return;

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

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

            case 6:
                this.txtDescripcionAputnes = ((System.Windows.Controls.TextBox)(target));
                return;
            }
            this._contentLoaded = true;
        }
 private void apuntesDGClick(object sender, MouseButtonEventArgs e)
 {
     if (!ventanaAbierta())
     {
         if (dgApuntesMainClases.SelectedItem != null)
         {
             Apunte        apunte = dgApuntesMainClases.SelectedItem as Apunte;
             int           numAsignaturaSeleccionada = cbAsignaturasClases.SelectedIndex;
             Asignatura    asignaturaSeleccionada    = listaAsignaturas.ElementAt(numAsignaturaSeleccionada);
             ApuntesWindow apuntesFicha = new ApuntesWindow(asignaturaSeleccionada, apunte.id);
             apuntesFicha.Show();
             apuntesFicha.Owner = this;
         }
     }
 }
        void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target)
        {
            switch (connectionId)
            {
            case 1:
                this.ApuntesWindow1 = ((CUADERNODELPROFESOR.ApuntesWindow)(target));
                return;

            case 2:

            #line 11 "..\..\..\ui\ApuntesWindow.xaml"
                ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.editarApunte);

            #line default
            #line hidden
                return;

            case 3:

            #line 12 "..\..\..\ui\ApuntesWindow.xaml"
                ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.eliminarApunte);

            #line default
            #line hidden
                return;

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

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

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

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

            case 8:
                this.txtDescripcionAputnes = ((System.Windows.Controls.TextBox)(target));
                return;
            }
            this._contentLoaded = true;
        }