This question is locked. New answers and comments are not allowed.
Hi,
I've created a Modal Window and added some content but for some reason it stretches over my main grid :/ (see attachement)
Here is the code:
I've created a Modal Window and added some content but for some reason it stretches over my main grid :/ (see attachement)
Here is the code:
<Controls:RadModalWindow x:Name="qaInfo" Placement="CenterCenter"> <Border BorderBrush="{StaticResource CPEBlue}" BorderThickness="2" Background="Black"> <Grid> <Grid.RowDefinitions> <RowDefinition/> <RowDefinition/> </Grid.RowDefinitions> <TextBlock Grid.Row="0" TextWrapping="Wrap" Margin="5,0,5,0" VerticalAlignment="Bottom"> Kod Quick Assistance przeznaczony jest dla Klientów indywidualnych.</TextBlock> <Button x:Name="qaInfoOKButton" Grid.Row="1" Content="Ok" Click="qaInfoOKButton_Click"/> </Grid> </Border> </Controls:RadModalWindow>