0
WPFでカスタムボタンコントロールを行いましたが、WinForms(C#)で実装しようとしています。コントロールが正常に動作してコンパイルされましたが、要素ホストにアクセスできないようです。コントロールがツールボックスに表示されず、その後、フリーズしている、つまりフォームに追加できませんでした。プロジェクトのビルドプロセスはエラーや警告なしに行われていたため、何が問題の原因か分かりません。どんな助けでも感謝します、ありがとう。Visual Studio 2010でWPFコントロールフリーズ
編集:ここでは、XAMLファイルのコードがあります:
<Button x:Class="proba4.UserControl1"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
mc:Ignorable="d"
d:DesignHeight="120" d:DesignWidth="300" IsEnabled="True">
<Button.Template>
<ControlTemplate TargetType="{x:Type Button}">
<Grid>
<Image Name="Normal" Source="C:\stuff\off_button.gif"/>
<Image Name="Pressed" Source="C:\stuff\on_button.gif" Visibility="Hidden"/>
</Grid>
<ControlTemplate.Triggers>
<Trigger Property="IsPressed" Value="True">
<Setter TargetName="Normal" Property="Visibility" Value="Hidden"/>
<Setter TargetName="Pressed" Property="Visibility" Value="Visible"/>
</Trigger>
</ControlTemplate.Triggers>
</ControlTemplate>
</Button.Template>
</Button>
私はそれについて考えましたが、私は構成に経験がありません。任意のヒント? –
それは大丈夫です。どうもありがとうございました)。 –
あなたのようなコードになりますが、1行目でButtonタグをUserControlタグに置き換え、