-2
が制御
Custom Control Image
相続人の特性Properties
すべての背後にあるコードがある理由を知っている
public string Text
{
get
{
return MenuText.Text;
}
set
{
MenuText.Text = value;
}
}
public Brush FontColor
{
get
{
return MenuText.Foreground;
}
set
{
MenuText.Foreground = value;
}
}
public ImageSource Image
{
get
{
return Icon.Source;
}
set
{
Icon.Source = value;
}
}
を作品にプリ入力したテキストを変更はるかに複雑な "DependencyProperties"(https://www.wpftutorial.net/DependencyProperties.html)。それらを使用していない可能性があります。しかし、私はほとんどあなたに少なくとも1つの答えを与えると推測しています。 – Christopher