私が間違っている可能性があることについて、誰かが私にいくつかのヒントを教えてくれますか?
だから私はxamlにテキストブロックを持っています
<TextBlock>
<TextBlock.Text>
<Binding Source="signal_graph" Path="GraphPenWidth" Mode="TwoWay" Converter="{StaticResource string_to_double_converter}" />
</TextBlock.Text>
</TextBlock>
signal_graph の GraphPenWidth プロパティ (double 型) に付加されます。コンバーターは、アプリのリソースでリソースとして宣言され、次のようになります。
public class StringToDoubleValueConverter : IValueConverter
{
public object Convert(object value, Type targetType,
object parameter, CultureInfo culture)
{
double num;
string strvalue = value as string;
if (double.TryParse(strvalue, out num))
{
return num;
}
return DependencyProperty.UnsetValue;
}
public object ConvertBack(object value, Type targetType,
object parameter, CultureInfo culture)
{
return value.ToString();
}
}
私が考えたのは、起動時にデフォルトのコンストラクターによって選択されたプロパティ値がテキストブロックに伝播され、テキストブロックがフォーカスを離れたときに将来のテキストブロックの変更がグラフを更新するということです。ただし、代わりに、初期ロードはテキストブロックのテキストを更新せず、テキストブロックのテキストを変更してもグラフのペン幅の値には影響しません。
さらに明確にするためにお気軽にお問い合わせください。