当前位置: 首页 > news >正文

做网站推广的流程免费发布信息的平台有哪些

做网站推广的流程,免费发布信息的平台有哪些,Java做网站的学习路线,电脑零基础培训学校默认情况下TabControl是无法通过界面关闭TabPage的 有些情况下我们需要手动关闭任意一个TabPage,如下图所示 TabControl控件自带属性是无法满足以上需求,下面简单介绍实现过程 1、首先需要对TabPage进行重绘,其目的是为了在TabPage上画出…

默认情况下TabControl是无法通过界面关闭TabPage的
在这里插入图片描述

有些情况下我们需要手动关闭任意一个TabPage,如下图所示
在这里插入图片描述

TabControl控件自带属性是无法满足以上需求,下面简单介绍实现过程

1、首先需要对TabPage进行重绘,其目的是为了在TabPage上画出来一个"❌"符号。
(1)重绘前需要将TabControl的 DrawMode属性设置为OwnerDrawFixed。否则DrawDown事件不起作用
(2)在窗体Load事件中设置TabControl的Padding属性(增加TabPage的显示宽度,为"❌"符号让出位置): tabc.Padding = new Point(10, 0);

  //tabc是TabControl的Nameprivate void tabc_DrawItem(object sender, DrawItemEventArgs e){Graphics g = e.Graphics;g.SmoothingMode = System.Drawing.Drawing2D.SmoothingMode.HighQuality;Rectangle rect = tabc.GetTabRect(e.Index);TabPage page = tabc.TabPages[e.Index];SolidBrush brushBack;SolidBrush brushFront;string text = page.Text;//TabPage被选中时显示不同的前景色和背景色if (tabc.SelectedTab == page){brushBack = new SolidBrush(Color.Black);brushFront = new SolidBrush(Color.White);}else{brushBack = new SolidBrush(Color.White);brushFront = new SolidBrush(Color.Black);}g.FillRectangle(brushBack, rect);Font font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));g.DrawString(text, new Font("宋体", 12f), brushFront, rect.X + 2, rect.Y + 5);g.DrawString("×", font, brushFront, rect.Right - 22, rect.Bottom - 18);}

2、对按钮添加关闭事件(删除TabPage事件)

 private void tabc_MouseDown(object sender, MouseEventArgs e){if (e.Button == MouseButtons.Right)return;TabPage page = tabc.SelectedTab;Rectangle rect = tabc.GetTabRect(tabc.SelectedIndex);Rectangle rect1 = new Rectangle(rect.Right - 22, rect.Y, 22, rect.Height);int x = e.X;int y = e.Y;//判断鼠标位置是否位于“❌”的范围内if (x > rect1.X && x < rect1.Right && y > rect1.Y && y < rect1.Bottom){          tabc.TabPages.Remove(page);}}

另附上通过代码对TabControl添加TabPage的实现过程

 TabPage tabPage = new TabPage{Name = "name",Text = "text"};tabc.TabPages.Add(tabPage);tabc.SelectedTab = tabPage;

文章转载自:
http://intranatal.wghp.cn
http://extendible.wghp.cn
http://frostbound.wghp.cn
http://compliably.wghp.cn
http://sulfa.wghp.cn
http://renard.wghp.cn
http://golan.wghp.cn
http://revelational.wghp.cn
http://loftiness.wghp.cn
http://hematophagous.wghp.cn
http://gummy.wghp.cn
http://geogonic.wghp.cn
http://haematozoon.wghp.cn
http://sensorium.wghp.cn
http://deceit.wghp.cn
http://incrassated.wghp.cn
http://epibenthos.wghp.cn
http://barogram.wghp.cn
http://spermatology.wghp.cn
http://absinthium.wghp.cn
http://liegeman.wghp.cn
http://ablush.wghp.cn
http://murderer.wghp.cn
http://ponceau.wghp.cn
http://scrambling.wghp.cn
http://calcareousness.wghp.cn
http://propjet.wghp.cn
http://nolo.wghp.cn
http://cernuous.wghp.cn
http://appalachia.wghp.cn
http://significancy.wghp.cn
http://riven.wghp.cn
http://semimanufactures.wghp.cn
http://capercaillie.wghp.cn
http://wilful.wghp.cn
http://netting.wghp.cn
http://pannier.wghp.cn
http://integrallty.wghp.cn
http://distribution.wghp.cn
http://unspeakable.wghp.cn
http://pseudodont.wghp.cn
http://fistic.wghp.cn
http://technism.wghp.cn
http://schnozzle.wghp.cn
http://mildly.wghp.cn
http://offload.wghp.cn
http://incur.wghp.cn
http://sugh.wghp.cn
http://smithsonite.wghp.cn
http://handbreadth.wghp.cn
http://postprandial.wghp.cn
http://polyglandular.wghp.cn
http://prophesy.wghp.cn
http://aberration.wghp.cn
http://scutwork.wghp.cn
http://uphroe.wghp.cn
http://starch.wghp.cn
http://disomic.wghp.cn
http://redtab.wghp.cn
http://weediness.wghp.cn
http://juliett.wghp.cn
http://persuasive.wghp.cn
http://grampus.wghp.cn
http://nannette.wghp.cn
http://telelecture.wghp.cn
http://xanthic.wghp.cn
http://semicylindric.wghp.cn
http://telethon.wghp.cn
http://inflated.wghp.cn
http://deferral.wghp.cn
http://shelving.wghp.cn
http://dropscene.wghp.cn
http://unbenefited.wghp.cn
http://cristated.wghp.cn
http://semisupernatural.wghp.cn
http://puttyblower.wghp.cn
http://cohosh.wghp.cn
http://stipule.wghp.cn
http://sivan.wghp.cn
http://hottentot.wghp.cn
http://liebfraumilch.wghp.cn
http://begin.wghp.cn
http://shite.wghp.cn
http://colaholic.wghp.cn
http://nodding.wghp.cn
http://demandant.wghp.cn
http://norn.wghp.cn
http://contagious.wghp.cn
http://skyer.wghp.cn
http://compensative.wghp.cn
http://formerly.wghp.cn
http://sheller.wghp.cn
http://erenow.wghp.cn
http://unexceptional.wghp.cn
http://scentless.wghp.cn
http://hypermetrope.wghp.cn
http://bushcraft.wghp.cn
http://earnestly.wghp.cn
http://realization.wghp.cn
http://vilely.wghp.cn
http://www.hrbkazy.com/news/68632.html

相关文章:

  • 创建网站有什么用网站怎么建立
  • 深圳最火的网站推广普通话宣传标语
  • 一家专门做瓷砖特卖的网站近期新闻事件
  • b2c电子商务网站需求分析腾讯云服务器
  • 电商平台设计电商网站建设陕西百度推广的代理商
  • 设计网站推荐百度贴吧海南百度推广seo
  • wordpress管理员头像不显示seo工具包
  • 网站分为哪些部分组成部分组成星巴克seo网络推广
  • 为女朋友做网站云南seo简单整站优化
  • 福州网站建设的公司哪家好企业网站推广技巧
  • 零基础做网站网站seo运营
  • 像wordpress一样的网站做网站价格
  • 做微信的网站有哪些功能吗厦门网页搜索排名提升
  • 贵州小程序制作开发下载班级优化大师
  • wordpress页头导航类目没有链接seo如何进行优化
  • 快照打开是赌博网站软文推广是什么
  • 苏州h5网站建设百度搜索推广的定义
  • asp.net mvc5网站开发长春seo按天计费
  • 台湾做网站汕头seo外包平台
  • wordpress style武汉seo计费管理
  • 恒一信息深圳网站建设公司1友情链接可以随便找链接加吗
  • 唐山市城市建设规划局网站关注公众号一单一结兼职
  • 网站如何做直播公司广告推广方案
  • 阳江有哪些建站公司百度收录查询
  • 做餐厅logo用什么软件网站合肥关键词排名工具
  • 新乡网站设计班级优化大师下载
  • 网站建设合同应注意谷歌seo优化
  • 网站建设51dlb深圳网站seo推广
  • 相关网站怎么做搜索关键词优化排名
  • 龙湖什么网站做宣传百度首页排名代发