I want to bind CLR property into datagrid Row How to Bind row binding in datagrid(Twoway Mode)
CodeBehind:
public partial class TechnicalPropertiesU_Var : Window
{
public TechnicalPropertiesU_Var()
{
InitializeComponent();
List<Myclass> myclassList = new List<Myclass>();
myclassList.Add(new Myclass() { IA = 0, IB = 0, IC = 0, ID = 0, IE = 0, IF = 0, IF = 0 });
MyGrid.ItemsSource = myclassList;
}
}
MyWindow Xaml:
<Grid>
<DataGrid x:Name="MyGrid" AutoGenerateColumns="False">
<DataGrid.Columns>
<DataGridTextColumn Header="Argument Name"></DataGridTextColumn>
<DataGridTextColumn Header="Argument Value"></DataGridTextColumn>
</DataGrid.Columns>
</DataGrid>
</Grid>
Model Class
public class Myclass
{
private int iA;
private int iB;
private int iC;
private int iD;
private int iE;
private int iF;
private int iG;
public int IA{get=>iA; set=>iA =value;}
public int IB{get=>iB; set=> iB =value;}
public int IC{get=>iC; set=> iC =value;}
public int ID{get=>iD; set=> iD =value;}
public int IE{get=>iE; set=> iE =value;}
public int IF{get=>iF; set=> iF =value;}
public int IG{get=>iG; set=> iG =value;}
}
How to get particular column in datagrid field. please give any samples
What you are trying to do does not make a whole lot of sense, especially from a maintenance perspective. You have apparently 250 variables that you want to list. What if this list ever gets cut short, or extends, and you now have 2389 variables (exaggerated, but just for the point). You would be pulling your hair out trying to maintain it.
Instead, you should learn more about class structures, more probable databases too and trying to find a common pattern. Each "thing" you have is an integer-based item. But each "thing" has a corresponding purpose, or description such as your IA, IB, IC, etc.
I am proposing you CONSIDER the following. I have made an enumerator with a list of things. Example below, but I only have items for IA-IG. I also, for sample purposes, put a description associated with two of these things.
So, now in your code, if I have a variable based on the type of "my250Things", I can refer to it by its enum to know what it represents.
Back to your data grid. Since all your records to be presented are one row each, and showing the corresponding variable name context (IA, IB, etc) and the value it contains, I created a class. This class actually has 3 properties. A show value, a show int, and the original enum value it was created based on. Below.
Now, I want to populate a list of things I want to present to the user. Since the enum lets me know the "things" I am trying to track, I can use it to populate the list, along with it's description(s) where applicable. If none, it defaults with the string representation of the enum itself. I created a simple window "Stack1" for a demo, created a public property for binding the data list to and auto-populate based on the enum.
You will need these "using" references at the top of the window's .cs file
Here is the code within the window's code-behind
Finally, in the xaml of the form, I have the binding of the data grid to the list of things prepared from the enum.
Now, within the form/window, or wherever you have your MVVM pattern defined (doubt at this point), but anyhow, however you plan on saving data, you can just cycle through the list of things, and get its respective thing and description to save wherever you plan, but that was not disclosed in your question to apply further.
Good luck.