コード例 #1
0
        private void ExecuteGetSmallerCommand()
        {
            switch (State)
            {
            case CollapsingState.Large:
                State = CollapsingState.Normal;
                break;

            case CollapsingState.Normal:
                State = CollapsingState.Small;
                break;
            }
        }
コード例 #2
0
 private void ExecuteGoToSmallCommand()
 {
     State = CollapsingState.Small;
 }
コード例 #3
0
 private void ExecuteGoToNormalCommand()
 {
     State = CollapsingState.Normal;
 }
コード例 #4
0
 private void ExecuteGoToLargeCommand()
 {
     State = CollapsingState.Large;
 }
コード例 #5
0
 private void ExecuteGetSmallerCommand()
 {
     switch ( State )
     {
         case CollapsingState.Large:
             State = CollapsingState.Normal;
             break;
         case CollapsingState.Normal:
             State = CollapsingState.Small;
             break;
     }
 }
コード例 #6
0
 private void ExecuteGoToSmallCommand()
 {
     State = CollapsingState.Small;
 }
コード例 #7
0
 private void ExecuteGoToNormalCommand()
 {
     State = CollapsingState.Normal;
 }
コード例 #8
0
 private void ExecuteGoToLargeCommand()
 {
     State = CollapsingState.Large;
 }