-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathAdControl.xaml
58 lines (47 loc) · 2.06 KB
/
AdControl.xaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
<UserControl
x:Class="VBA10.AdControl"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="using:VBA10"
xmlns:adduplex="using:AdDuplex"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
mc:Ignorable="d"
d:DesignHeight="90"
d:DesignWidth="500">
<Grid x:Name="adGrid">
<!--<Grid.RenderTransform>
<CompositeTransform ScaleX="0.5" ScaleY="0.5" />
</Grid.RenderTransform>-->
<!--<Grid.RowDefinitions>
<RowDefinition Height="90"/>
</Grid.RowDefinitions>
<Grid.ColumnDefinitions>
<ColumnDefinition Width="728"/>
</Grid.ColumnDefinitions>-->
<!--<adduplex:AdControl x:Name="AdDuplexAdControl"
AppKey="53f0124b-fa9c-40be-a364-4589d505adcd"
AdUnitId="166555"
RefreshInterval="20"
/>-->
<!--<UI:AdControl ApplicationId="c6ee4c5e-e2b6-4b79-99e6-672f765f0ae0"
AdUnitId="11532489"
HorizontalAlignment="Left"
Height="90"
Width="728"
VerticalAlignment="Bottom"
x:Name="MSAdControl"
ErrorOccurred="MSAdControl_ErrorOccurred"
AdRefreshed="MSAdControl_AdRefreshed"
AutoRefreshIntervalInSeconds="30"
Visibility="Visible"
>
</UI:AdControl>-->
<!--<TextBlock Text="This is a placeholder for ads because the Ad SDK for Windows 10 is not yet available."
TextWrapping="Wrap"
FontSize="12"
Margin="6,0,6,0"
Height="36"
/>-->
</Grid>
</UserControl>