2012-10-04 2 views

답변

5

줄을 사용하여이 작업을 수행 할 수 있어야합니다.

Margin, X1, Y1, StrokeThickness 및 사용
<Line X1="0" Y1="60" Margin="0,10,0,0" StrokeThickness="3" Stroke="White"></Line> 

enter image description here

Stroke 당신이 그러나 당신이 원하는 보이게 할 수 있어야한다 :이처럼 보이는 예는 here 있습니다.

4

유니버설 Windows 8.1 XAML 응용 프로그램에서는 BottomAppBar에 선을 그릴 수 없습니다. 대신 당신도이 UWP (범용 윈도우 플랫폼) 응용 프로그램을 작동이

<Page.BottomAppBar> 
    <CommandBar> 
     <AppBarButton 
      Icon="Delete" 
      Label="Delete Icon" /> 
     <AppBarSeparator /> 
     <AppBarButton 
      Icon="Delete" 
      Label="Delete Icon" /> 
    </CommandBar> 
</Page.BottomAppBar> 
+0

(UWA) 같은 AppBarSeparator 컨트롤을 사용할 수 있습니다. – raddevus

관련 문제