DBSelectControl.cs
Description du code
DBSelectControl.cs est un fichier du projet BiblioBrol.Ce fichier est situé dans /var/www/bin/sniplets/bibliobrol/src/.
Projet BiblioBrol :
Gestion de media en CSharp.
Pour plus d'infos, vous pouvez consulter la brève analyse.
Code source ou contenu du fichier
Code c# (DBSelectControl.cs) (91 lignes)
using System; using System.Windows.Forms; using be.gaudry.bibliobrol.config; using be.gaudry.bibliobrol.model.enums; using be.gaudry.bibliobrol.view.controls.dao; using be.gaudry.model.enums; using System.Collections.Generic; namespace be.gaudry.bibliobrol.view.controls { /// <summary> /// Used to select the persistant system, and configure it. /// </summary> public partial class DBSelectControl : UserControl { private IDBControl dbControl; public DBSelectControl() { InitializeComponent(); reset(); } public void reset() { dbTypeCB.DisplayMember = "Value"; dbTypeCB.ValueMember = "Key"; dbTypeCB.SelectedItem = EnumHelper.getKeyValuePair(Config.PersistentType); showSelectedDBPanel(); //dbControl.reset(); } private void showSelectedDBPanel() { if (dbControl != null) this.mainTLP.Controls.Remove(((Control)dbControl)); if (dbTypeCB.Items.Count > 0 && dbTypeCB.SelectedIndex > -1) { PERSISTENCE_TYPE persistenceType = (PERSISTENCE_TYPE)EnumHelper.getEnum(dbTypeCB.SelectedItem); switch (persistenceType) { case PERSISTENCE_TYPE.SQLExpress: //((SQLEControl)dbControl).AutoScroll = true; //((Control)dbControl).Name = "sqleCtrl"; break; case PERSISTENCE_TYPE.Access: //((AccessControl)dbControl).AutoScroll = true; //((Control)dbControl).Name = "accessCtrl"; break; case PERSISTENCE_TYPE.MySQL: break; } /* ((Control)dbControl).Location = new System.Drawing.Point(3, 43); ((Control)dbControl).Size = new System.Drawing.Size(394, 234); ((Control)dbControl).TabIndex = 1; ((Control)dbControl).Margin = new System.Windows.Forms.Padding(10); ((Control)dbControl).Padding = new System.Windows.Forms.Padding(2); */ ((Control)dbControl).Dock = DockStyle.Fill; this.mainTLP.Controls.Add(((Control)dbControl)); } } private void dbTypeCB_SelectedIndexChanged(object sender, EventArgs e) { if (dbTypeCB.Items.Count > 0) showSelectedDBPanel(); } #region context menu private void executeBatch_Click(object sender, EventArgs e) { model.ModelAdapter.executeBrolBatch(true); } private void save_Click(object sender, EventArgs e) { dbControl.save(); } private void reloadCTsMi_Click(object sender, EventArgs e) { reset(); } #endregion } }
Structure et Fichiers du projet
Afficher/masquer...Icône | Nom | Taille | Modification |
Icône | Nom | Taille | Modification |
| _ | Répertoire parent | 0 octets | 1736570967 11/01/2025 05:49:27 |
| _ | dao | 0 octets | 1541007199 31/10/2018 18:33:19 |
| _ | toolBars | 0 octets | 1541007200 31/10/2018 18:33:20 |
| _ | webInfo | 0 octets | 1541007201 31/10/2018 18:33:21 |
Utilisation de l'explorateur de code
- Navigation :
- Un clic sur une icône de répertoire ouvre ce répertoire pour en afficher les fichiers.
- Lorsque le répertoire en cours ne contient pas de sous-répertoires il est possible de remonter vers le répertoire parent.
- La structure de répertoires en treetable (tableau en forme d'arborescence) n'est plus possibledans cette version.
- Un clic sur une icône de fichier ouvre ce fichier pour en afficher le code avec la coloration syntaxique adaptée en fonction du langage principal utilisé dans le fichier.
- Affichage :
- Il est possible de trier les répertoires ou les fichiers selon certains critères (nom, taille, date).
- Actions :
- Les actions possible sur les fichiers dépendent de vos droits d'utilisateur sur le site. Veuillez activer le mode utilisateur pour activer les actions.
Version en cache
11/01/2025 05:49:27 Cette version de la page est en cache (à la date du 11/01/2025 05:49:27) afin d'accélérer le traitement. Vous pouvez activer le mode utilisateur dans le menu en haut pour afficher la dernère version de la page.Document créé le 16/10/2009, dernière modification le 26/10/2018
Source du document imprimé : https://www.gaudry.be/cs-bibliobrol-source-rf-view/controls//DBSelectControl.cs.html
L'infobrol est un site personnel dont le contenu n'engage que moi. Le texte est mis à disposition sous licence CreativeCommons(BY-NC-SA). Plus d'info sur les conditions d'utilisation et sur l'auteur.