Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <ScrollViewer>
- <!--LayoutRoot is the root grid where all page content is placed-->
- <Grid x:Name="LayoutRoot" Background="Transparent">
- <Grid.RowDefinitions>
- <RowDefinition Height="Auto"/>
- <RowDefinition Height="*"/>
- </Grid.RowDefinitions>
- <!--TitlePanel contains the name of the application and page title-->
- <StackPanel x:Name="TitlePanel" Grid.Row="0" Margin="12,17,0,28">
- <TextBlock x:Name="ApplicationTitle" Text="smsflatrate" Style="{StaticResource PhoneTextNormalStyle}"/>
- <TextBlock x:Name="PageTitle" Text="Message" Margin="9,-7,0,0" Style="{StaticResource PhoneTextTitle1Style}"/>
- </StackPanel>
- <!--ContentPanel - place additional content here-->
- <Grid x:Name="ContentPanel" Grid.Row="1" Margin="12,0,12,0">
- <TextBox FontSize="24" Margin="0,0,80,532" Name="absenderField" AcceptsReturn="True" TextWrapping="Wrap" Height="auto" MinHeight="30" MaxWidth="375">
- <TextBox.InputScope>
- <InputScope>
- <InputScopeName NameValue="Text" />
- </InputScope>
- </TextBox.InputScope>
- </TextBox>
- <Button Height="70" HorizontalAlignment="Left" Margin="380,0,0,0" Name="button1" VerticalAlignment="Top" Width="76" Click="button1_Click">
- <Button.Background>
- <ImageBrush ImageSource="/Smsflatrate;component/Images/appbar.add.rest2.png" />
- </Button.Background>
- </Button>
- </Grid>
- <Grid x:Name="ContentPanel2" Grid.Row="1" Margin="12,63,12,67">
- <TextBox FontSize="24" Margin="1,0,80,6" Name="messageField" AcceptsReturn="True" TextWrapping="Wrap" MinHeight="30" MaxWidth="375">
- <TextBox.InputScope>
- <InputScope>
- <InputScopeName NameValue="Chat" />
- </InputScope>
- </TextBox.InputScope>
- </TextBox>
- </Grid>
- </Grid>
- </ScrollViewer>
Advertisement
Add Comment
Please, Sign In to add comment