2016-12-16 8 views

答えて

1

Flyoutはここに適しているであろう。

<Button Content="Edit"> 
    <Button.Flyout> 
     <Flyout Placement="Right"> 
      <Flyout.FlyoutPresenterStyle> 
       <Style TargetType="FlyoutPresenter"> 
        <Setter Property="Padding" Value="0"/> 
        <Setter Property="BorderThickness" Value="0"/> 
       </Style> 
      </Flyout.FlyoutPresenterStyle> 

      <TextBox Width="250" Height="100" TextWrapping="Wrap"/> 
     </Flyout> 
    </Button.Flyout> 
</Button> 

Screenshot

あなたが望む外観を得るために、スタイルで遊んでみてください。

関連する問題