|
43 | 43 | <Style x:Key="LabelText" TargetType="TextBlock"> |
44 | 44 | <Setter Property="FontWeight" Value="Bold"/> |
45 | 45 | <Setter Property="Margin" Value="0,3"/> |
| 46 | + <Setter Property="VerticalAlignment" Value="Center"/> |
46 | 47 | </Style> |
47 | 48 |
|
48 | 49 | <Style x:Key="ColorPicker" TargetType="igControls:XamColorPicker"> |
|
75 | 76 | <Setter Property="Foreground" Value="Black"/> |
76 | 77 | <Setter Property="FontSize" Value="14"/> |
77 | 78 | <Setter Property="Margin" Value="0,2"/> |
| 79 | + <Setter Property="VerticalAlignment" Value="Center"/> |
78 | 80 | </Style> |
79 | 81 | </StackPanel.Resources> |
80 | 82 |
|
81 | 83 | <!-- ODATA SERVICES--> |
82 | 84 | <TextBlock Text="ODATA SERVICES" Style="{StaticResource HeaderText1}"/> |
83 | 85 | <ComboBox x:Name="cboOdataSources" SelectionChanged="cboOdataSources_SelectionChanged" Style="{StaticResource ComboBoxText}"> |
84 | 86 | <local:ODataSourceListItem BaseUri="http://services.odata.org/V4/Northwind/Northwind.svc" EntitySet="Orders" Description="Northwind Orders"/> |
| 87 | + <local:ODataSourceListItem BaseUri="http://services.odata.org/V4/Northwind/Northwind.svc" EntitySet="Employees" Description="Northwind Employees"/> |
| 88 | + <local:ODataSourceListItem BaseUri="http://services.odata.org/V4/Northwind/Northwind.svc" EntitySet="Suppliers" Description="Northwind Suppliers"/> |
85 | 89 | <local:ODataSourceListItem BaseUri="http://services.odata.org/AdventureWorksV3/AdventureWorks.svc" EntitySet="CompanySales" Description="AdventureWorks Company Sales"/> |
| 90 | + <local:ODataSourceListItem BaseUri="http://services.odata.org/AdventureWorksV3/AdventureWorks.svc" EntitySet="ProductCatalog" Description="AdventureWorks Product Catalog"/> |
| 91 | + <local:ODataSourceListItem BaseUri="http://services.odata.org/AdventureWorksV3/AdventureWorks.svc" EntitySet="WorkOrderRouting" Description="AdventureWorks Workorder Routing"/> |
86 | 92 | <local:ODataSourceListItem BaseUri="http://data.scottsdaleaz.gov/Planning/BuildingPermits.svc" EntitySet="BuildingPermits" Description="Scottsdale Building Permits"/> |
87 | 93 | <local:ODataSourceListItem BaseUri="http://data.scottsdaleaz.gov/Planning/BuildingPermits.svc" EntitySet="BuildingInspections" Description="Scottsdale Building Inspections"/> |
88 | 94 | <local:ODataSourceListItem BaseUri="http://data.scottsdaleaz.gov/MunicipalServices/CapitalImprovementProjects.svc" EntitySet="Projects" Description="Scottsdale Capital Improvement Projects"/> |
89 | 95 | <local:ODataSourceListItem BaseUri="http://data.scottsdaleaz.gov/Finance/BusinessLicenses.svc" EntitySet="BusinessLicenses" Description="Scottsdale Business Licenses"/> |
90 | 96 | <local:ODataSourceListItem BaseUri="http://data.scottsdaleaz.gov/Purchasing/Solicitations.svc" EntitySet="Solicitations" Description="Scottsdale Purchasing Solicitations"/> |
91 | 97 | <local:ODataSourceListItem BaseUri="http://packages.nuget.org/v1/FeedService.svc" EntitySet="Packages" Description="NuGet Packages"/> |
92 | | - <local:ODataSourceListItem BaseUri="http://www.nerddinner.com/Services/OData.svc" EntitySet="Dinners" Description="NerdDinner Dinners"/> |
93 | | - <local:ODataSourceListItem BaseUri="http://www.nerddinner.com/Services/OData.svc" EntitySet="RSVPs" Description="NerdDinner RSVPs"/> |
| 98 | + <local:ODataSourceListItem BaseUri="http://odata.research.microsoft.com/odata.svc" EntitySet="Projects" Description="Microsoft Research - Projects"/> |
| 99 | + <local:ODataSourceListItem BaseUri="http://odata.research.microsoft.com/odata.svc" EntitySet="Publications" Description="Microsoft Research - Publications"/> |
94 | 100 | </ComboBox> |
95 | 101 | <CheckBox x:Name="chkNullOutDatasource" IsChecked="True" Style="{StaticResource CheckBoxText}">Null out datasource before setting new</CheckBox> |
96 | 102 |
|
|
150 | 156 | <igControls:XamColorPicker Grid.Row="2" Grid.Column="1" Style="{StaticResource ColorPicker}" SelectedColor="{Binding ElementName=dataPresenter1, Mode=TwoWay, Path=(igDP:XamDataPresenter.FieldLayoutSettings).DynamicDataPendingForegroundBrush, Converter={StaticResource colorToBrushConverter}}"/> |
151 | 157 |
|
152 | 158 | <TextBlock Grid.Row="3" Grid.Column="0" Text="SHOW CUSTOM TEMPLATE" Style="{StaticResource LabelText}"/> |
153 | | - <CheckBox x:Name="chkShowProgressBar" Grid.Row="3" Grid.Column="1" Margin="0,2" IsChecked="False" Style="{StaticResource CheckBoxText}" Checked="chkShowProgressBar_Checked" Unchecked="chkShowProgressBar_Checked"/> |
| 159 | + <CheckBox x:Name="chkShowCustomTemplate" Grid.Row="3" Grid.Column="1" Margin="0,2" IsChecked="False" Style="{StaticResource CheckBoxText}" Checked="chkShowCustomTemplate_Checked" Unchecked="chkShowCustomTemplate_Checked"/> |
154 | 160 | </Grid> |
155 | 161 |
|
156 | 162 | <!-- Filter Settings --> |
|
0 commit comments