Advertisement
Guest User

Untitled

a guest
May 3rd, 2017
196
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.89 KB | None | 0 0
  1. <Page
  2. x:Class="backgroundblurtest.MainPage"
  3. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  4. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  5. xmlns:local="using:backgroundblurtest"
  6. xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  7. xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  8. mc:Ignorable="d">
  9.  
  10. <Grid Background="Transparent">
  11. <RelativePanel Grid.Column="0" Grid.ColumnSpan="2" MinWidth="40" x:Name="MainGrid" SizeChanged="Page_SizeChanged" Loaded="Page_Loaded"/>
  12. <RelativePanel Grid.Column="0" Width="{Binding ElementName=MainGrid,Path=Width}" Background="#28000000"/>
  13. <Grid>
  14. <!--Having content here, for example textblock and so on-->
  15. <TextBlock HorizontalAlignment="Left" Text="TextBlock" VerticalAlignment="Top"/>
  16. </Grid>
  17. </Grid>
  18. </Page>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement