how can i make Xam tiles auto customize according to screen resolution(height,Width)?
Hi,
I didn't hear back from you but perhaps this information will be helpful to you. These are notes I found defining WPF height and width.
The height / width is established in the Definitions area. There are three ways to define a height / width. The first is automatic, and you simply set Height=”Auto” (or width) and WPF will take care of sizing for you.
The second way is absolute. With absolute, you simply give a number which represents the number of pixels. Width=”100” sets it to 100 pixels.
The final method is proportional. Unlike ASP.Net, which used percentages, WPF uses an * (asterisk). When only one row (or column) is set to *, that row (or column) takes up all the remaining space. When multiple rows (or columns) have an *, the remaining space is divided evenly between those rows (or… yes, you guessed it, columns).
Finally, you can affix a multiplier to the *. If, for example, one column was 2*, and the other two columns were set to *, the first column would be twice as wide as the others. Let’s look at a quick example…
Hi
I’m not sure that I understand your reference to “auto customize according to screen resolution”.
Please give me more details of your design and what you are trying to achieve; let me know if you are asking about the XamTilesControl itself or the individual tiles when they are maximized or in their normal state.