如何在DataGrid中替換「true」和「false」來顯示其他內容,比如說「在線/離線」。在DataGrid中替換「true」和「false」
我從MySQL數據庫使用此代碼獲取數據:
MySqlConnection connection = new MySqlConnection("SERVER=127.0.0.1;DATABASE=xo_game;UID=root;PASSWORD=;");
try
{
connection.Open();
MySqlCommand cmd = new MySqlCommand("SELECT id, player_one, player_two, avaible FROM games", connection);
MySqlDataAdapter adp = new MySqlDataAdapter(cmd);
DataSet ds = new DataSet();
adp.Fill(ds, "LoadDataBinding");
dataGridGames.DataContext = ds;
}
catch (MySqlException ex)
{
MessageBox.Show(ex.ToString());
}
finally
{
connection.Close();
}
我初學C#請幫助:/
最簡單的方法是使用一個'IValueCOnverter' –
是的,他有同樣的問題,但他用的DataGridView,這是一個有點不同勢。在DataGrid中,你不能應用相同的功能 – trans1x2d
@MightyBadaboom thx的建議,我會嘗試 – trans1x2d