blob: b4bb9d8dbb8c27f470f7cf8a13d86d3f6c17434f (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
<Window x:Class="DotNetOpenAuth.Samples.OAuthConsumerWpf.Authorize2"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:oauth2="clr-namespace:DotNetOpenAuth.OAuth2;assembly=DotNetOpenAuth.OAuth2.Client.UI"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="Authorize" Height="500" Width="500">
<DockPanel LastChildFill="True">
<WindowsFormsHost>
<oauth2:ClientAuthorizationView x:Name="clientAuthorizationView" Completed="clientAuthorizationView_Completed" />
</WindowsFormsHost>
</DockPanel>
</Window>
|