zoukankan      html  css  js  c++  java
  • MessageBox



            private void button1_Click(object senderEventArgs e)
            {
                string s = "是否要删除以下文件? ";
                for (int i = 0; i < 10;i++ )
                {
                    s += i.ToString()+". ";
                }
                MessageBox.Show(s"提示"MessageBoxButtons.YesNoMessageBoxIcon.Question);
            }
      


            private void button1_Click(object senderEventArgs e)
            {
                int count = 111;
                string str = "File";
                string s = "是否要删除以下文件? ";
                string s1 = "";
                if (count < 15)
                {
                    for (int i = 0; i <= counti++)
                    {
                        //1.filename
                        s1 += String.Format("{0}.{1} "istr);
                    }
                    s = s1;
                }
                string s2 = "是否要删除以下文件? ";
                if (count > 15)
                {
                    //产生1...10
                    for (int i = 1; i < 11; i++)
                    {
                        s2 += String.Format("{0,3}.{1} "istr);
                    }
                    s2 += " ";
                    s2 += " ... ";
                    s2 += " ";
                    s2 += s1;
                    //最后一个名称
                    //s2 += count.ToString() + "." + str;
                    s2 += String.Format("{0,3}.{1} "countstr);
                    s = s2;
                }
                MessageBox.Show(s"提示"MessageBoxButtons.YesNoMessageBoxIcon.Question);
            }





  • 相关阅读:
    C#的多态性
    冒泡法,改进冒泡法排序和反序算法
    [收藏]D3D渲染流程简介
    [收藏]字符串表达式求值
    Windows下使用VC++编译GNU科学计算库 GNU Scientific Library(GSL)
    VC++ 高精度定时timeSetEvent和回调成员方法
    [收藏]C/C++数组名与指针区别深层探索
    线性表操作
    线性表综合运用
    两个线性表融合的算法
  • 原文地址:https://www.cnblogs.com/xe2011/p/3441384.html
Copyright © 2011-2022 走看看