データベーステーブルにバインドされたDataGrid
があり、DataGrid
で選択した行のコンテンツを取得する必要があります。たとえば、MessageBox
で選択した行のコンテンツを表示します。
DataGrid
の例:
したがって、2番目の行を選択した場合、MessageBox
は次のように表示される必要があります。646 Jim Biology。
SelectedItem
プロパティを使用して、現在選択されているオブジェクトを取得し、それを正しい型にキャストできます。たとえば、DataGrid
がCustomer
オブジェクトのコレクションにバインドされている場合、これを行うことができます。
Customer customer = (Customer)myDataGrid.SelectedItem;
または、SelectedItem
をソースクラスまたはViewModel
にバインドできます。
<Grid DataContext="MyViewModel">
<DataGrid ItemsSource="{Binding Path=Customers}"
SelectedItem="{Binding Path=SelectedCustomer, Mode=TwoWay}"/>
</Grid>
MVVMパターンを使用している場合、VMのSelectedRecord
プロパティをDataGridのSelectedItem
にバインドできます。これにより、常にSelectedValue
を使用できますVM。それ以外の場合は、DataGridのSelectedIndex
プロパティを使用する必要があります。
public IEnumerable<DataGridRow> GetDataGridRows(DataGrid grid)
{
var itemsSource = grid.ItemsSource as IEnumerable;
if (null == itemsSource) yield return null;
foreach (var item in itemsSource)
{
var row = grid.ItemContainerGenerator.ContainerFromItem(item) as DataGridRow;
if (null != row) yield return row;
}
}
private void DataGrid_Details_SelectionChanged(object sender, SelectionChangedEventArgs e)
{
try
{
var row_list = GetDataGridRows(DataGrid_Details);
foreach (DataGridRow single_row in row_lis)
{
if (single_row.IsSelected == true)
{
MessageBox.Show("the row no."+single_row .GetIndex ().ToString ()+ " is selected!");
}
}
}
catch { }
}
あなたもすることができます:
DataRowView row = dataGrid.SelectedItem as DataRowView;
MessageBox.Show(row.Row.ItemArray[1].ToString());
これはこのDataGrid dgでは非常に簡単で、アイテムクラスはdatagridに設定され、listblock1は基本フレームです。
private void DataGrid_SelectionChanged(object sender, SelectionChangedEventArgs e)
{
try
{
var row_list = (Item)dg.SelectedItem;
listblock1.Content = "You Selected: " + row_list.FirstName + " " + row_list.LastName;
}
catch { }
}
public class Item
{
public string FirstName { get; set; }
public string LastName { get; set; }
}
まあ私は私のためにうまく機能している同様のソリューションを置きます。
private void DataGrid1_SelectionChanged(object sender, SelectionChangedEventArgs e)
{
try
{
if (DataGrid1.SelectedItem != null)
{
if (DataGrid1.SelectedItem is YouCustomClass)
{
var row = (YouCustomClass)DataGrid1.SelectedItem;
if (row != null)
{
// Do something...
// ButtonSaveData.IsEnabled = true;
// LabelName.Content = row.Name;
}
}
}
}
catch (Exception)
{
}
}
ファラの答えを試した後、これを発見しましたが、私のプロジェクトではうまくいきませんでした。 [データソース]ウィンドウから列をドラッグし、ラベルまたはテキストボックスにドロップします。
modelクラスを使用して、データグリッドから選択された行の値を取得します。
XDocument xmlDoc = XDocument.Load(filepath);
if (tablet_DG.SelectedValue == null)
{
MessageBox.Show("select any record from list..!", "select atleast one record", MessageBoxButton.OKCancel, MessageBoxImage.Warning);
}
else
{
try
{
string tabletID = "";
/*here i have used my model class named as TabletMode*/
var row_list = (TabletModel)tablet_DG.SelectedItem;
tabletID= row_list.TabletID;
var items = from item in xmlDoc.Descendants("Tablet")
where item.Element("TabletID").Value == tabletID
select item;
foreach (var item in items)
{
item.SetElementValue("Instance",row_list.Instance);
item.SetElementValue("Database",row_list.Database);
}
xmlDoc.Save(filepath);
MessageBox.Show("Details Updated..!"
+ Environment.NewLine + "TabletId: " +row_list.TabletID + Environment.NewLine
+ "Instance:" + row_list.Instance + Environment.NewLine + "Database:" + row_list.Database, "", MessageBoxButton.YesNoCancel, MessageBoxImage.Information);
}
catch (Exception ex)
{
MessageBox.Show(ex.StackTrace);
}
}
private void Fetching_Record_Grid_MouseDoubleClick_1(object sender, MouseButtonEventArgs e)
{
IInputElement element = e.MouseDevice.DirectlyOver;
if (element != null && element is FrameworkElement)
{
if (((FrameworkElement)element).Parent is DataGridCell)
{
var grid = sender as DataGrid;
if (grid != null && grid.SelectedItems != null && grid.SelectedItems.Count == 1)
{
//var rowView = grid.SelectedItem as DataRowView;
try
{
Station station = (Station)grid.SelectedItem;
id_txt.Text = station.StationID.Trim() ;
description_txt.Text = station.Description.Trim();
}
catch
{
}
}
}
}
}
MVVMを使用した@Krytoxの回答
<DataGrid
Grid.Column="1"
Grid.Row="1"
Margin="10" Grid.RowSpan="2"
ItemsSource="{Binding Data_Table}"
SelectedItem="{Binding Select_Request, Mode=TwoWay}" SelectionChanged="DataGrid_SelectionChanged"/>//The binding
#region View Model
private DataRowView select_request;
public DataRowView Select_Request
{
get { return select_request; }
set
{
select_request = value;
OnPropertyChanged("Select_Request"); //INotifyPropertyChange
OnSelect_RequestChange();//do stuff
}
}
2行目を選択した場合-
Dim jason As DataRowView
jason = dg1.SelectedItem
noteText.Text = jason.Item(0).ToString()
noteTextは646になります。これはVBですが、取得できます。
おそらく特定のコンテキストで機能する多くの回答がありますが、選択した行の最初のセルのテキスト値を取得しようとしていました。ここで受け入れられた答えは私にとって最も近いものでしたが、それでも型を作成し、その型に行をキャストする必要がありました。私はよりシンプルなソリューションを探していましたが、これが私が思いついたものです:
MessageBox.Show(((DataRowView)DataGrid.SelectedItem).Row[0].ToString());
これにより、選択した行の最初の列が表示されます。うまくいけば、これは他の誰かを助ける。