2017-01-20 12 views
0

空白を削除するにはどうすればよいですか?WPFウィンドウから追加の垂直空白を削除する方法

<Window x:Class="AnnoCopyDialog.RebarPasteWindow" 
     xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" 
     xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" 
     xmlns:d="http://schemas.microsoft.com/expression/blend/2008" 
     xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" 
     xmlns:local="clr-namespace:AnnoCopyDialog" 
     mc:Ignorable="d" 
     ResizeMode="NoResize" 
     Background="#f0f0f0" 
     FontSize="11" 
     Title="Paste Window" Width="420" Height="Auto"> 
    <Grid Margin="10"> 
     <Grid.RowDefinitions> 
      <RowDefinition Height="Auto"/> 
     </Grid.RowDefinitions> 
     <Grid Grid.Row="0" Margin="0 15 0 0" HorizontalAlignment="Right"> 
      <StackPanel Orientation="Horizontal" HorizontalAlignment="Right"> 
       <Button Content="OK" HorizontalAlignment="Center" Width="70"/> 
      </StackPanel> 
     </Grid> 
    </Grid> 
</Window> 

enter image description here

+0

ただ、今まであなたが望む大きものにウィンドウの高さを変更します。オートは完全な高さを意味します。 –

+0

@MuhammadSaqlainそれは私の問題です!私はそれの中にあるものに自動サイズ変更するウィンドウをしたい! – Vahid

答えて

1

使用SizeToContent = "高さ"

<Window x:Class="AnnoCopyDialog.RebarPasteWindow" 
     xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" 
     xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" 
     xmlns:d="http://schemas.microsoft.com/expression/blend/2008" 
     xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" 
     xmlns:local="clr-namespace:AnnoCopyDialog" 
     mc:Ignorable="d" 
     ResizeMode="NoResize" 
     Background="#f0f0f0" 
     FontSize="11" 
     Title="Paste Window" Width="420" Height="Auto" SizeToContent="Height"> 
    <Grid Margin="10"> 
     <Grid.RowDefinitions> 
      <RowDefinition Height="Auto"/> 
     </Grid.RowDefinitions> 
     <Grid Grid.Row="0" Margin="0 15 0 0" HorizontalAlignment="Right"> 

      <StackPanel Orientation="Horizontal" HorizontalAlignment="Right"> 
       <Button Content="OK" HorizontalAlignment="Center" Width="70"/> 
      </StackPanel> 


     </Grid> 
    </Grid> 
</Window> 
+0

ありがとう!あなたは私を救いました! – Vahid

関連する問題