ComponentFactory.Krypton.Toolkit.ViewDrawButton.SetOrientation C# (CSharp) 메소드

SetOrientation() 공개 메소드

Set the orientation of the two button components.
public SetOrientation ( VisualOrientation borderBackOrient, VisualOrientation contentOrient ) : void
borderBackOrient VisualOrientation Orientation of the button border and background..
contentOrient VisualOrientation Orientation of the button contents.
리턴 void
        public void SetOrientation(VisualOrientation borderBackOrient, 
                                   VisualOrientation contentOrient)
        {
            _drawCanvas.Orientation = borderBackOrient;
            _drawContent.Orientation = contentOrient;
            UpdateDropDown();
        }