显示淡入淡出的气球类型消息框

时间:2011-05-24 07:58:51

标签: vb.net

我需要一个类似于消息框的气球,它会显示几秒钟然后消失(不会立即消失)

请告知如何执行此操作。

由于 Furqan

2 个答案:

答案 0 :(得分:3)

试试这个:

Dim buttonToolTip As New ToolTip()
with buttonToolTip
    .ToolTipTitle = "Button Tooltip"
    .UseFading = True
    .UseAnimation = True
    .IsBalloon = True
    .ShowAlways = True
    .AutoPopDelay = 5000
    .InitialDelay = 1000
    .ReshowDelay = 500
    .IsBalloon = True
    .SetToolTip(Button1, "Click me to execute.")
End With

<强> EDITED
如果你需要一个淡化的MessageBox,你可以这样做:

  • 创建一个在构造函数
  • 中接受状态和文本的表单
  • 在状态图上绘制正确的图标并在表单上放置文字
  • 创建一个计时器并在Tick事件检查是否需要关闭
  • 如果是时候关闭通话FadeForm方法

示例:

public enum Status
{
    None,
    Error,
    Question,
    Warning,
    Info
}

public class FadingForm: Form
{
    dt: TDateTime;

    public FadingForm(Status status, string msg)
    {
        this.lbl.Text = msg; // I imagine you have a Label named lbl
        switch (status)
        {
            case Warning: 
                img.Image = warning; // I imagine you have a PictureBox named img
                break;
            case ...
        }
        dt = DateTime.Now;
        tmr.Enabled = true;
    }

    public void Tmr_Tick() 
    {
        if (DateTime.Now - dt) > limit
        {
            FadeForm(10); //Just an example
            Close();
        }
    }

    public void FadeForm(byte NumberOfSteps)  
    {  
        float StepVal = (float)(100f / NumberOfSteps);  
        float fOpacity = 100f;  
        for (byte b = 0; b < NumberOfSteps; b++)  
        {  
            this.Opacity = fOpacity / 100;  
            this.Refresh();  
            fOpacity -= StepVal;  
        }  
    }
}

答案 1 :(得分:1)

我认为这种行为取决于用户的Windows设置,如果你想实现这一点,你可以自己编写一个气球消息,并在完全关闭之前降低其不透明度。