Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What is a "Page Function"?

Tags:

wpf

What is a "Page Function" in WPF and what have you used it for? Also, it this something you think Silverlight would benefit from?

like image 336
Jonathan Allen Avatar asked Jan 04 '12 20:01

Jonathan Allen


1 Answers

PageFunction is a cross between a Page and a Function (method). So basically, you can navigate to it like a page, but it can also return a value like a method. This is useful for when you want to show the user a page and receive feedback in the calling page. You could use a popup box of sorts, but in some patterns and situations, a page is preferable.

There's a good explanation of PageFunctions in this article.

like image 139
keyboardP Avatar answered Sep 27 '22 17:09

keyboardP