我是新手,我希望你能得到我,正如你在图片中看到的那样,列密码中的行有掩码,我的问题是如何在datagridview中复制该设计?
这是关于我如何检索数据并将其插入数据网格视图的代码。
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
using System.Data.OleDb;
namespace GoldenToolsThesisProject
{
public partial class FrmSetup : Form
{
OleDbConnection connection = new OleDbConnection();
OleDbCommand command = new OleDbCommand();
}
private void FrmSetup_Load(object sender, EventArgs e)
{
connection.ConnectionString = @"Provider=Microsoft.ACE.OLEDB.12.0;Data Source=Database1.accdb;
Persist Security Info = True";
DisplayData();
}
private void DisplayData()
{
try
{
connection.Open();
command.Connection = connection;
command.CommandText = "SELECT * FROM People";
OleDbDataAdapter Adptr = new OleDbDataAdapter(command);
DataSet Table = new DataSet();
Adptr.Fill(Table);
DataGridView1.DataSource = "";
DataGridView1.DataSource = Table.Tables[0];
}
catch (Exception e)
{
MessageBox.Show("Error: " + e.Message);
}
connection.Close();
}
}
Here's my DataGridView1 output:
我想将列密码中的设计放入我的datagridview中,以便在打开时无法显示。我希望有人可以帮助我。这让我感觉好几天,我不知道答案。
提前谢谢你们!