summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrew Arnott <andrewarnott@gmail.com>2010-07-14 00:12:22 -0700
committerAndrew Arnott <andrewarnott@gmail.com>2010-07-14 00:12:22 -0700
commitc57069113ce391d0e2b40d2b7b14aa693511db70 (patch)
tree32d560380c77ad4bc8a362cc9845b0124bbf8c83
parentfbad4ad11c853ae36c02267910951d71fac83639 (diff)
downloadDotNetOpenAuth-c57069113ce391d0e2b40d2b7b14aa693511db70.zip
DotNetOpenAuth-c57069113ce391d0e2b40d2b7b14aa693511db70.tar.gz
DotNetOpenAuth-c57069113ce391d0e2b40d2b7b14aa693511db70.tar.bz2
Fixed tab order.
-rw-r--r--samples/OAuthConsumerWpf/MainWindow.xaml36
1 files changed, 18 insertions, 18 deletions
diff --git a/samples/OAuthConsumerWpf/MainWindow.xaml b/samples/OAuthConsumerWpf/MainWindow.xaml
index b4a6959..2305227 100644
--- a/samples/OAuthConsumerWpf/MainWindow.xaml
+++ b/samples/OAuthConsumerWpf/MainWindow.xaml
@@ -151,40 +151,40 @@
<ColumnDefinition Width="*" />
<ColumnDefinition Width="auto" />
</Grid.ColumnDefinitions>
- <Label Grid.Row="1">Token Endpoint URL</Label>
- <TextBox Grid.Row="1" Grid.Column="1" x:Name="wrapTokenUrlBox" Text="https://graph.facebook.com/oauth/access_token" />
- <Label Grid.Row="1" Grid.Column="2">POST</Label>
- <Label Grid.Row="2">User Authorization URL</Label>
- <TextBox Grid.Row="2" Grid.Column="1" x:Name="wrapAuthorizationUrlBox" Text="https://graph.facebook.com/oauth/authorize?display=popup" />
- <Label Grid.Row="2" Grid.Column="2">GET</Label>
- <Label Grid.Row="0">Grant Type</Label>
- <ComboBox Grid.Row="0" Grid.Column="1" Grid.ColumnSpan="2" x:Name="flowBox" SelectedIndex="0">
+ <Label Grid.Row="1" TabIndex="202">Token Endpoint URL</Label>
+ <TextBox Grid.Row="1" Grid.Column="1" x:Name="wrapTokenUrlBox" Text="https://graph.facebook.com/oauth/access_token" TabIndex="203" />
+ <Label Grid.Row="1" Grid.Column="2" TabIndex="204">POST</Label>
+ <Label Grid.Row="2" TabIndex="205">User Authorization URL</Label>
+ <TextBox Grid.Row="2" Grid.Column="1" x:Name="wrapAuthorizationUrlBox" Text="https://graph.facebook.com/oauth/authorize?display=popup" TabIndex="206" />
+ <Label Grid.Row="2" Grid.Column="2" TabIndex="207">GET</Label>
+ <Label Grid.Row="0" TabIndex="200">Grant Type</Label>
+ <ComboBox Grid.Row="0" Grid.Column="1" Grid.ColumnSpan="2" x:Name="flowBox" SelectedIndex="0" TabIndex="201">
<ComboBox.Items>
<ComboBoxItem>Authorization Code</ComboBoxItem>
<ComboBoxItem>Resource Owner Basic Credentials</ComboBoxItem>
<ComboBoxItem>Access Code (direct)</ComboBoxItem>
</ComboBox.Items>
</ComboBox>
- <Label Grid.Row="3">Resource URL</Label>
- <TextBox Grid.Row="3" Grid.Column="1" x:Name="wrapResourceUrlBox" Text="https://graph.facebook.com/me" />
- <ComboBox Grid.Row="3" Grid.Column="2" x:Name="wrapResourceHttpMethodList" SelectedIndex="0">
+ <Label Grid.Row="3" TabIndex="207">Resource URL</Label>
+ <TextBox Grid.Row="3" Grid.Column="1" x:Name="wrapResourceUrlBox" Text="https://graph.facebook.com/me" TabIndex="208" />
+ <ComboBox Grid.Row="3" Grid.Column="2" x:Name="wrapResourceHttpMethodList" SelectedIndex="0" TabIndex="209">
<ComboBox.Items>
<ComboBoxItem>GET w/ header</ComboBoxItem>
<ComboBoxItem>GET w/ querystring</ComboBoxItem>
<ComboBoxItem>POST</ComboBoxItem>
</ComboBox.Items>
</ComboBox>
- <Label Grid.Row="4">Client Identifier</Label>
- <TextBox Grid.Row="4" Grid.Column="1" x:Name="wrapClientIdentifierBox" Grid.ColumnSpan="2" Text="367207604173" />
- <Label Grid.Row="5">Client Secret</Label>
- <TextBox Grid.Row="5" Grid.Column="1" x:Name="wrapClientSecretBox" Grid.ColumnSpan="2" Text="1df77e64055c4d7d3583cefdf2bc62d7"/>
- <Label Grid.Row="6">OAuth 2.0 version</Label>
- <ComboBox Grid.Row="6" Grid.Column="1" SelectedIndex="0" x:Name="wrapVersion">
+ <Label Grid.Row="4" TabIndex="210">Client Identifier</Label>
+ <TextBox Grid.Row="4" Grid.Column="1" x:Name="wrapClientIdentifierBox" Grid.ColumnSpan="2" Text="367207604173" TabIndex="211" />
+ <Label Grid.Row="5" TabIndex="212">Client Secret</Label>
+ <TextBox Grid.Row="5" Grid.Column="1" x:Name="wrapClientSecretBox" Grid.ColumnSpan="2" Text="1df77e64055c4d7d3583cefdf2bc62d7" TabIndex="213" />
+ <Label Grid.Row="6" TabIndex="214">OAuth 2.0 version</Label>
+ <ComboBox Grid.Row="6" Grid.Column="1" SelectedIndex="0" x:Name="wrapVersion" TabIndex="215">
<ComboBox.Items>
<ComboBoxItem>2.0 DRAFT 9</ComboBoxItem>
</ComboBox.Items>
</ComboBox>
- <Button Grid.Row="7" Grid.Column="1" x:Name="wrapBeginButton" Click="wrapBeginButton_Click">Begin</Button>
+ <Button Grid.Row="7" Grid.Column="1" x:Name="wrapBeginButton" Click="wrapBeginButton_Click" TabIndex="216">Begin</Button>
<TextBox Grid.Column="0" Grid.Row="8" Grid.ColumnSpan="3" Name="wrapResultsBox" IsReadOnly="True" />
</Grid>
</TabItem>