本文整理汇总了C#中System.Windows.Forms.BindingSource.Insert方法的典型用法代码示例。如果您正苦于以下问题:C# BindingSource.Insert方法的具体用法?C# BindingSource.Insert怎么用?C# BindingSource.Insert使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类System.Windows.Forms.BindingSource
的用法示例。
在下文中一共展示了BindingSource.Insert方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: frmUsuarios_Load
private void frmUsuarios_Load(object sender, EventArgs e)
{
Modelo_Entidades.PERFIL oPerfil = collPerfilesObtenidos.Find(delegate(Modelo_Entidades.PERFIL oPerfilBuscado) { return oPerfilBuscado.PERMISOS.PER_CODIGO == "R"; });
if (oPerfil == null)
{
this.btnResetearClave.Enabled = false;
this.btnResetearClave.Visible = false;
}
BindingSource bsGrupos = new BindingSource();
bsGrupos.DataSource = oCCUGrupos.ObtenerGrupos();
Modelo_Entidades.GRUPO oGrupo = new Modelo_Entidades.GRUPO();
oGrupo.GRU_DESCRIPCION= "TODOS";
oGrupo.GRU_CODIGO ="TODOS";
oGrupo.GRU_ESTADO = true;
//bsGrupos.Add(oGrupo);
bsGrupos.Insert(0, oGrupo);
cbGrupo.DataSource = bsGrupos;
cbGrupo.DisplayMember = "GRU_DESCRIPCION";
//TablaGrupos = oCCUGrupos.ObtenerGrupos();
cargarGrillaUsuarios();
this.dgvUsuarios.Columns[3].Visible = false; //esconder clave
this.dgvUsuarios.Columns[6].Visible = false; //esconder grupos
this.dgvUsuarios.Columns[0].HeaderText = "Código de Usuario";
this.dgvUsuarios.Columns[1].HeaderText = "Nombre del Usuario";
this.dgvUsuarios.Columns[2].HeaderText = "Estado del Usuario";
this.dgvUsuarios.Columns[4].HeaderText = "Apellido del Usuario";
this.dgvUsuarios.Columns[5].HeaderText = "E-Mail del Usuario";
this.ArmaPerfil(oUsuarioActual, this.Name);
if (collPerfilesObtenidos.Find(delegate(Modelo_Entidades.PERFIL oPerfilBuscado) { return oPerfilBuscado.PER_CODIGO == "R"; }) == null)
{
this.btnResetearClave.Enabled = true;
this.btnResetearClave.Visible = true;
}
/*
oForm = oCCURPF.obtenerFormulario(frmGrupos.ObtenerInstancia().Name);
collPerfilesObtenidos = oCCURPF.recuperarPerfilForm(oUsuarioActual, oForm);
if (collPerfilesObtenidos.Find(delegate(Modelo_Entidades.PERFIL oPerfilBuscado) { return oPerfilBuscado.PER_CODIGO == "A"; }) == null)
{
this.btnAgregar.Enabled = true;
}
if (collPerfilesObtenidos.Find(delegate(Modelo_Entidades.PERFIL oPerfilBuscado) { return oPerfilBuscado.PER_CODIGO == "B"; }) == null)
{
this.btnEliminar.Enabled = true;
}
if (collPerfilesObtenidos.Find(delegate(Modelo_Entidades.PERFIL oPerfilBuscado) { return oPerfilBuscado.PER_CODIGO == "M"; }) == null)
{
this.btnModificar.Enabled = true;
}
*/
}