답변:
이 시도
<Button BorderThickness="0"
Style="{StaticResource {x:Static ToolBar.ButtonStyleKey}}" >...
HorizontalContentAlignment
가 없습니다 Stretch
.
버튼 템플릿을 변경해야 할 수도 있습니다. 이렇게하면 프레임이없고 버튼을 누르거나 비활성화 할 수없는 버튼이 나타납니다.
<Style x:Key="TransparentStyle" TargetType="{x:Type Button}">
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="Button">
<Border Background="Transparent">
<ContentPresenter/>
</Border>
</ControlTemplate>
</Setter.Value>
</Setter>
</Style>
그리고 버튼 :
<Button Style="{StaticResource TransparentStyle}"/>
<Button Style="{StaticResource TransparentButton}"/>
가 있습니다<Button Style="{StaticResource TransparentStyle}"/>
당신이해야 할 일은 다음과 같습니다.
<Button Name="MyFlatImageButton"
Background="Transparent"
BorderBrush="Transparent"
BorderThickness="0"
Padding="-4">
<Image Source="MyImage.png"/>
</Button>
이것이 당신이 찾고있는 것이기를 바랍니다.
편집 : 죄송합니다. 이미지 위로 마우스를 가져갈 때 버튼 테두리를 보려면 Padding = "-4"를 건너 뛰면 됩니다.
왜 다른 사람들 이이 질문이 대답이 허용 된 질문과 중복된다고 지적하지 않았는지 모르겠습니다 .
여기 솔루션을 인용 : 당신은 오버라이드 (override) 할 필요가 ControlTemplate
의를 Button
:
<Button Content="save" Name="btnSaveEditedText"
Background="Transparent"
Foreground="White"
FontFamily="Tw Cen MT Condensed"
FontSize="30"
Margin="-280,0,0,10"
Width="60"
BorderBrush="Transparent"
BorderThickness="0">
<Button.Template>
<ControlTemplate TargetType="Button">
<ContentPresenter Content="{TemplateBinding Content}"/>
</ControlTemplate>
</Button.Template>
</Button>
다음과 같이 Button 대신 하이퍼 링크를 사용할 수 있습니다.
<TextBlock>
<Hyperlink TextDecorations="{x:Null}">
<Image Width="16"
Height="16"
Margin="3"
Source="/YourProjectName;component/Images/close-small.png" />
</Hyperlink>
</TextBlock>
프로그래밍 방식으로 다음을 수행 할 수 있습니다.
btn.BorderBrush = new SolidColorBrush(Colors.Transparent);
왜 둘 다 Background & BorderBrush
동일하게 설정하지 않습니까brush
<Style TargetType="{x:Type Button}" >
<Setter Property="Background" Value="{StaticResource marginBackGround}"></Setter>
<Setter Property="BorderBrush" Value="{StaticResource marginBackGround}"></Setter>
</Style>
<LinearGradientBrush x:Key="marginBackGround" EndPoint=".5,1" StartPoint="0.5,0">
<GradientStop Color="#EE82EE" Offset="0"/>
<GradientStop Color="#7B30B6" Offset="0.5"/>
<GradientStop Color="#510088" Offset="0.5"/>
<GradientStop Color="#76209B" Offset="0.9"/>
<GradientStop Color="#C750B9" Offset="1"/>
</LinearGradientBrush>