Esempio n. 1
0
 internal void UpdateChrome(Chrome chrome)
 {
     Debug.WriteLine("BorderManager updating chrome.");
     if (_left != null)
     {
         _left.UpdateChromeBindings(chrome);
     }
     if (_top != null)
     {
         _top.UpdateChromeBindings(chrome);
     }
     if (_right != null)
     {
         _right.UpdateChromeBindings(chrome);
     }
     if (_bottom != null)
     {
         _bottom.UpdateChromeBindings(chrome);
     }
 }