Thread ID: |
Created: |
Updated: |
Platform: |
Replies: |
148268 | Oct 12,2019 04:39 PM UTC | Oct 28,2019 08:52 AM UTC | WPF | 10 |
![]() |
Tags: PivotGridControl |
# MainWindow.xaml.cs
public MainWindow()
{
InitializeComponent();
pivotGrid1.Loaded += PivotGrid1_Loaded;
}
private void PivotGrid1_Loaded(object sender, RoutedEventArgs e)
{
pivotGrid1.InternalGrid.Loaded += InternalGrid_Loaded;
}
private void InternalGrid_Loaded(object sender, RoutedEventArgs e)
{
//Here we getting the row count value as 13. int row = this.pivotGrid1.PivotEngine.RowCount;
//Here we getting the column count value as 8.
int column = this.pivotGrid1.PivotEngine.ColumnCount;
}
|
This post will be permanently deleted. Are you sure you want to continue?
Sorry, An error occured while processing your request. Please try again later.
This page will automatically be redirected to the sign-in page in 10 seconds.