コード例 #1
0
 private protected virtual void InitializeProperties()
 {
     ControllerView.SetCommentDisplayMode(CommentDisplayMode);
     ControllerView.SetShowUnfocusedComments(ShowUnfocusedComments);
     ControllerView.SetShowBlockGeometry(ShowBlockGeometry);
     ControllerView.SetShowLineNumber(ShowLineNumber);
 }
コード例 #2
0
        private protected virtual void OnShowUnfocusedCommentsPropertyChanged(DependencyPropertyChangedEventArgs e)
        {
            if (ControllerView != null)
            {
                ControllerView.SetShowUnfocusedComments(ShowUnfocusedComments);

                InvalidateMeasure();
                InvalidateVisual();
            }
        }