tags:

views:

355

answers:

2

I have a very big problem, with WPF popup control, I can't make it full screen, when I set the height to max size the control accept the value and the rendered height is 75% of the screen resolution

any body can help???

A: 

Could it be, that your problem is actually related to the virtual pixel units in WPF?

"WPF Pixel is not a “real” pixel, it is a virtual unit which does not map to to the device pixels."

Further reading here. If so, you should do some converting to the sizes and everything should work fine.

Andrej
A: 

This question has now been answered here:

http://stackoverflow.com/questions/2633129/cant-create-a-fullscreen-wpf-popup

Ashley Davis