2010-03-14 2 views
5

유명한 MSN 채팅 클라이언트 대화 창에 대해 궁금합니다. 나는 많은 다른면이 있어야한다고 확신하지만 그 작은 슬라이딩 창에 초점을 맞추고 싶습니다. 예를 들어 대화에있는 사람들의 사진이 표시되는 곳입니다. 축소 버튼을 클릭하면 그림이 사라지고 패널이 정상적으로 들어가고 확대하려면 다시 클릭하면 그림이 부드럽게 흐려집니다.사용자가 그려진 컨트롤 : MSN 채팅 창

어떻게 컨트롤을 그리는 것이 좋을까요? 비슷한 동작을하는 WinForms?

답변

2

너비를 움직이는 방법을 알려줄 것입니다.

int _collapsedWidth; 
int _fullWidth; 
float _speed; 
float _acurateWidth; 

System.Diagnostics.Stopwatch _stopwatch = new Stopwatch(); 

int _animationDirection; 

AnimatedControl(){ 

    Application.Idle += ApplicationIdle; 
} 

void Expand(){ 
    _animationDirection = 1; 
    _stopwatch.Start(); 
} 

void ApplicationIdle (object sender, EventArgs e){ 
    if (_animation.Direction == 0) 
     return; 

    float delta = _stopwatch.Elapsed.TotalMilliseconds * _speed; 

    _acurateWidth += delta; 

    if (_acurateWidth < _collapsedWidth) 
    { 
     _animationDirection = 0; 
     _acurateWidth = _collapsedWidth; 
     _stopwatch.Stop();    
    } 
    else if (_acurateWidth > _fullWidth) 
    { 
     _animationDirection = 0; 
     _acurateWidth = _fullWidth; 
     _stopwatch.Stop();  
    } 

    _stopwatch.Reset(); 

    this.Width = (int)System.Math.Round(_acurateWidth , MidpointRounding.AwayFromZero); 
    this.Invalidate(); // May not need this 

} 

과 뭔가를해야만 비슷하지만 translucent images 사용하여 사진에 대한

, 당신은 투명 배경 그들을 위해 색상뿐만 아니라 당신이 일을 칠하는 방법을 따라와 새 컨트롤을 할 수 있습니다.

이 컨트롤을 LayoutPanel 컨트롤 중 하나에 넣으면 폼의 다른 컨트롤을 너비와 일치하도록 이동할 수 있습니다.

+0

답변 주셔서 감사합니다. 아프다면 제가 아프게 작동하도록 할 수 있다면 답을 수락하십시오. – caesay

관련 문제