Click here to Skip to main content
15,886,110 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
How can I add rows in my datagrid that I created and add it's column already.

Thanks
Posted
Updated 1-Mar-11 6:14am
v2

Hi,

That is your Xaml:
XAML
<Window x:Class="WpfApplicationTest.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
    <Grid>
        <DataGrid ItemsSource="{Binding Path=DataView}"/>
    </Grid>
</Window>


That is your Code:
C#
public partial class MainWindow : Window
{
        private DataTable DataTable { get; set; }
        public DataView DataView { get; set; }

        public MainWindow()
        {
            InitializeComponent();

            DataTable = new DataTable();
            DataTable.Columns.Add("Test");

            DataView = DataTable.DefaultView;
            DataContext = this;
            
            AddRow();
            AddRow();
        }

        private void AddRow()
        {
            DataRow dr = DataTable.NewRow();
            dr["Test"] = "Wert1";
            DataTable.Rows.Add(dr);
        }
      
}


Hope this helps :-D
 
Share this answer
 
C#
<a href=""></a>[<a href="" target="_blank">^</a>]
 
Share this answer
 
Comments
Thanks7872 15-Dec-15 7:25am    
Did you forget to insert a link? Why answer to 4 year old question?

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900