コード例 #1
0
        private void OnContentInvalidated(object sender, ContentInvalidatedEventArgs e)
        {
            var bounds = e.Bounds;

            if (IsSelectable)
            {
                bounds.X += SelectionMargin;
            }
            InvalidateSafe(bounds);
        }
コード例 #2
0
ファイル: RevisionHeaderPanel.cs プロジェクト: Kuzq/gitter
 private void OnContentInvalidated(object sender, ContentInvalidatedEventArgs e)
 {
     var bounds = e.Bounds;
     if(IsSelectable)
     {
         bounds.X += SelectionMargin;
     }
     InvalidateSafe(bounds);
 }