我刚刚开始使用 Silverlight,但我认为这很容易做到。我只是向一个新的 Silverlight 4 应用程序添加一个按钮,但无论我将 Background 属性更改为(SolidColorBrush,任何颜色),只有部分按钮的渐变更改,我永远无法获得纯色纯色填充。

这说明了我的意思:

为什么是红色渐变?我需要设置什么才能获得纯色填充?

最佳答案

您实际上需要为按钮创建一个新模板。

类似于以下内容:

<Canvas.Resources>
<Style x:Key="flatButton" TargetType="Button">
  <Setter Property="Template">
    <Setter.Value>
      <ControlTemplate TargetType="Button">
        <Border Background="{TemplateBinding Background}">
          <ContentPresenter />
        </Border>
      </ControlTemplate>
    </Setter.Value>
  </Setter>
</Style>
</Canvas.Resources>

...

<Button Style="{StaticResource flatButton}" />

关于silverlight-4.0 - 如何在 Silverlight 4 按钮上创建平面(即纯色、非渐变)颜色填充?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/3681629/

10-17 01:06