This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Collections.Generic; | |
using System.Linq; | |
using System.Net; | |
using System.Windows; | |
using System.Windows.Controls; | |
using System.Windows.Documents; | |
using System.Windows.Input; | |
using System.Windows.Media; | |
using System.Windows.Media.Animation; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System.Linq; | |
using System.Windows; | |
using System.Windows.Controls; | |
using System.Windows.Input; | |
using LinqToVisualTree; | |
using Microsoft.Phone.Controls; | |
namespace App.Util | |
{ | |
/// <summary> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Linq; | |
using System.Collections.Generic; | |
using System.Windows; | |
using System.Windows.Media; | |
namespace LinqToVisualTree | |
{ | |
/// <summary> | |
/// Adapts a DependencyObject to provide methods required for generate |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
A popup is used to display content which should be displayed on top of other content. | |
It's initially hidden and can be shown by calling the show method and hidden with the hide method. | |
A popup can be centered with the centered property; otherwise, it should be given a specific position. | |
A popup may be optionally floated above all application content by setting the floating property to true. This | |
has the advantage of guaranteeing the popup is displayed overtop of other content. This is appropriate when the | |
popup does not need to scroll with other content. |