AWT图形化开发:AWT是java最开始的图形化开发体系,awt的皮肤都是调用于操作系统的,依赖着操作系统。awt里最高父类是awt包下的Component组件类,继承于组件类的是Container容器类。容器类的分支有Panel无边框容器和Window有边框容器Window下分支有Frame可以放大缩小窗口,和Di..
分类:
编程语言 时间:
2017-10-26 22:44:04
阅读次数:
347
using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Text; using System.... ...
无边框线 UIBezierPath *maskPath = [UIBezierPath bezierPathWithRoundedRect:self.openGroupBtn.bounds byRoundingCorners:UIRectCornerTopRight | UIRectCornerBo ...
分类:
其他好文 时间:
2017-09-28 16:52:55
阅读次数:
249
VC中的Tab控件调用与VB、C++buider有点不一样。在VB或C++builder中,添加标签的时候,同时创建了页面窗口。在VC中,添加页标签时,要自己创建无边框窗口,嵌入到Tab控件中。步骤如下:1、在主窗口上,放上Tab控件,并创建关联变量m_tab2、在资源中,创建两个无边框窗口,创建相..
分类:
其他好文 时间:
2017-09-25 11:27:36
阅读次数:
218
private static bool IsDrag = false; private int enterX; private int enterY; private void setForm_MouseDown(object sender, MouseEventArgs e) { IsDrag = ...
分类:
移动开发 时间:
2017-09-01 09:53:26
阅读次数:
205
我们在自定义Dialog的时候,往往会希望除去安卓系统定义背景和标题,以便于更好的显示我们自己想要的效果。 其实我们只需要注意几个地方就行了。 1.在Style文件的中定义Dialog的主题 主要是这句:<item name="Android:windowBackground">@android:c ...
分类:
移动开发 时间:
2017-08-09 23:43:22
阅读次数:
325
1、使用的Microsoft Office 2007,添加一个无边框的表格,并插入一张图片,最后另存为编码utf-8,一开始保存的word xml格式的,图片的base64编码位于文档最后,暂时没有找到解决方法,所以就保存。 2、用编辑工具打开,找到base64编码替换为ftl标签,红色所示,图片设 ...
分类:
其他好文 时间:
2017-08-02 18:59:06
阅读次数:
212
protected override CreateParams CreateParams { get { const int WS_MINIMIZEBOX = 0x00020000; // Winuser.h中定义 CreateParams cp = ... ...
table表格 基本结构 table默认无边框(border) <table border="数值"> <tr> <th>表头</th> <th>表头</th> </tr> <tr> <td>单元格</td> <td>单元格</td> </tr> </table> table的属性 边框 borde ...
分类:
Web程序 时间:
2017-07-23 19:43:04
阅读次数:
221
开头添加变量: Point mouseOff;//鼠标移动位置变量 bool leftFlag;//标签是否为左键 事件部分: ps:很常用的几串字符。 记住! 记住! 记住! ...
分类:
移动开发 时间:
2017-07-18 16:49:31
阅读次数:
168