The pagefunction tag has no wiki summary.
3
votes
3answers
1k views
WPF - PageFunctions. Why are they needed?
I've been dabbling in WPF for a couple of months now and I've managed to grasp most of what's about and why/when it's used but I'm still struggling to see the value of the PageFunction class.
Can ...
2
votes
2answers
253 views
Can the F5 key be disabled in a navigation window in WPF?
I have a small application that uses a navigation window and a set of pages. My application is not a browser per se and thus I dont want the user to be able to refresh the page by pressing F5. Is ...
2
votes
1answer
521 views
Setting Command Bindings via XAML on PageFunction forms
If you are creating a WPF window or a WPF page, you can bind commands to functions within the XAML.
<Page x:Class="WpfPageApplication.Page1"
...
1
vote
2answers
472 views
How to Open modal window/dialog in XBAP Application?
In WPF, if i want to open a modal/response window then i write code like
Window1 _windowObj1 = new Window1();
_windowObj1.Owner = mainWindowObject;
_window1Obj.ShowDialog();
How to do the same in ...
1
vote
1answer
78 views
UI and variable accesibility confusion
I am building my own implementation of a wizard style interface and struggling to get it working correctly, along with every other style of wizard interface I expect to encounter the same problem. See ...
0
votes
2answers
131 views
jQuery Mobile Dynamic Content Insertion
Ok, would someone help me figure out why the "test" li in the following code isn't visible? I inspected the live dom and the elements do seem to be getting processed:
<!DOCTYPE HTML>
...
0
votes
0answers
60 views
WPF PageFunction<T> OnReturn doesn't bubble to Page
I have a page1 within a frame which contains a series of Checkboxes and another Frame, checking a box creates a new page2 which is a PageFunction and calls Frame.Navigate(page2).
My page1 code behind ...
0
votes
1answer
101 views
PageFunction not being disposed of causes crash
I have a WPF "wizard" where I am using PageFunction objects to display the various pages in the wizard. Several of these pages use references to objects in other assemblies within the application so ...