how Can i create Xam grid dynamically?
vikas227,
You could use logic in the SizeChanged of the Window to control the size of the tiles:
void MainWindow_SizeChanged(object sender, SizeChangedEventArgs e){ if (e.HeightChanged) { this.xamTilesControl1.NormalModeSettings.TileConstraints.PreferredHeight = this.xamTilesControl1.ActualHeight / 3-10; } if (e.WidthChanged) { this.xamTilesControl1.NormalModeSettings.TileConstraints.PreferredWidth = this.xamTilesControl1.ActualWidth / 3; }}
Let me know if this approach will work for you.
I have uploaded the code.i also want to know how can customize xam tile according to screen Height and width,when minimize my window form all tiles should be show in window..
Hello,
When you reply to the post by clicking on reply and not quick reply there will be three tabs. Initially you are on the Compose tab and the second tab is the Options tab.
Let me know if you have any questions with this matter.
Hi..
my query not resolve yet....
where is option tab.so i can send code to you
Were you able to resolve this or may I be of further assistance?