コード例 #1
0
ファイル: CTip.cs プロジェクト: Daoting/dt
        static void OnFormatChanged(DependencyObject d, DependencyPropertyChangedEventArgs e)
        {
            CTip tip = (CTip)d;

            if (tip._isLoaded)
            {
                var tb = (TextBlock)tip.GetTemplateChild("Block");
                if (tb != null)
                {
                    tb.ClearValue(TextBlock.TextProperty);
                    tb.SetBinding(TextBlock.TextProperty, tip.ValBinding);
                }
            }
        }
コード例 #2
0
ファイル: CTip.cs プロジェクト: Daoting/dt
 public TipValConverter(CTip p_owner)
 {
     _owner = p_owner;
 }