ポップアップのスタイルを作成する必要があります。彼らは重要ではありませんので、私はこのコードからグリッドの行と列の定義のようないくつかの要素を遮断しているエラー: 'System.Windows.Controls.Primitives.Popup'タイプのスタイルプロパティ 'テンプレート'が見つかりません
<Style x:Key="PopupBox" TargetType="{x:Type Popup}">
<Setter Property="OverridesDefaultStyle" Value="True" />
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="{x:Type Popup}">
<Grid>
<Border BorderBrush="Blue" Background="#FFFFFFFF">
<Grid>
<Border Background="AliceBlue"/>
<ContentPresenter ContentSource="Header" />
<ContentPresenter/>
<Border BorderBrush="#FFFFFFFF" Background="#FFBFDBFF"/>
</Grid>
</Border>
</Grid>
</ControlTemplate>
</Setter.Value>
</Setter>
</Style>
:私は、WPFと.NET Framework 4
私が書かれているスタイルを使用しています。
ポップアップコントロールにはこのプロパティがないため、<Setter Property="Template">
を使用できないようです。これを回避するにはどうしたらいいですか?
ここで何かお手伝いをしてください!
解決策が動作しています。ありがとう! – Marta