public static void setVisualStateProperty_50aaaf9819334ab9a5e132c1f664445d(global::System.Windows.DependencyObject finalTargetInstance, object value)
        {
            global::System.Type finalTargetInstanceType             = finalTargetInstance.GetType();
            global::System.Type propertyDeclaringType               = finalTargetInstanceType.GetProperty("FontWeight").DeclaringType;
            global::System.Reflection.FieldInfo       propertyField = propertyDeclaringType.GetField("FontWeightProperty");
            global::System.Windows.DependencyProperty property      = (global::System.Windows.DependencyProperty)propertyField.GetValue(null);

            (finalTargetInstance).SetVisualStateValue(property, value);
        }
 public static global::System.Collections.Generic.IEnumerable <global::System.Tuple <global::System.Windows.DependencyObject, global::System.Windows.DependencyProperty, int?> > accessVisualStateProperty_50aaaf9819334ab9a5e132c1f664445d(global::System.Windows.DependencyObject rootTargetObjectInstance)
 {
     yield break;
 }
Exemplo n.º 3
0
 /// <summary>
 /// <see cref="WordsText"/> 依存関係プロパティの有効なプロパティ値が変更されたときに呼び出されるコールバックを表します。
 /// </summary>
 /// <param name="d"> プロパティの値が変更された <see cref="global::System.Windows.DependencyObject"/> 。 </param>
 /// <param name="e"> このプロパティの有効値に対する変更を追跡するイベントによって発行されるイベント データ。 </param>
 private static void OnWordsTextChanged(global::System.Windows.DependencyObject d, DependencyPropertyChangedEventArgs e)
 {
     d.SetValue(WordsProperty, ((string)e.NewValue).Split(',').ToList());
 }