码迷,mamicode.com
首页 >  
搜索关键字:controls    ( 1635个结果
Using Controls in a Form Design [AX 2012]
Using Controls in a Form Design [AX 2012]This topic has not yet been rated-Rate this topic Updated:January 27, 2012 Applies To:Microsoft Dynamics AX 2...
分类:其他好文   时间:2014-06-29 13:45:59    阅读次数:249
TabControl控件用法图解[转载]
1.创建一个基于对话框的MFC工程,名称设置为“My”。2.在自动生成的对话框模板中,删除“TODO: Place dialog controls here.”静态文本框、“OK”按钮和“Cancel”按钮。在对话框资源上从工具箱中添加上一个TabControl控件;3. 根据需要修改一下属性,然后...
分类:其他好文   时间:2014-06-16 08:19:29    阅读次数:314
JS与FLEX|AS实现互相调用
1.AS代码<?xmlversion="1.0"encoding="utf-8"?> <mx:Applicationxmlns:mx="http://www.adobe.com/2006/mxml"layout="absolute" width="200"height="200"creationComplete="initApp()"> <mx:Script> <![CDATA[ importmx.controls.Alert; importf..
分类:Web程序   时间:2014-06-10 23:45:06    阅读次数:341
html5 audio 标签属性
src:String型,所播放音频的 url。 autoplay:值为autoplay,如果出现该属性,则音频在就绪后马上播放。 controls:值为controls,如果出现该属性,则向用户显示控件,比如播放按钮。 loop:值为loop,如果出现该属性,则每当音频结束时重新开始播放。...
分类:Web程序   时间:2014-06-09 16:54:06    阅读次数:549
一个Flex 对话框的坑
最近在项目中遇到一个问题,在Flex中使用Alert.show("this is content!", "title");发现对话框可以弹出来,但是文本始终不显示。why? 由此开始了我苦逼的排查之路。首先,可以排除没有引入包 import mx.controls.Alert;的问题。如果没有引入包...
分类:其他好文   时间:2014-06-08 06:24:58    阅读次数:216
vb.net 代码建立控件,并显示在窗体上
Dim lb As New Label lb.Text = "hello" lb.Top = 200 lb.Left = 100 Me.Controls.Add(lb)
分类:Windows程序   时间:2014-06-07 10:34:32    阅读次数:330
VB 用代码创建的控件和接收事件
在声明公共变量的位置加上这句就可以了Dim WithEvents NewButton As Buttonform_load中添加NewButton = New Button NewButton.Text = "close" Me.Controls.Add(NewButton)调用事件: Privat...
分类:其他好文   时间:2014-06-07 07:06:56    阅读次数:202
非映射的形式检查TextBox,ComboBox控件的值是否为空(是否被选中)
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Windows; using System.Windows.Controls; using System.Windows.Data; using System.Windows.Documents; us...
分类:其他好文   时间:2014-06-05 00:31:37    阅读次数:309
asp.net后台添加css、 js 、 meta、ascx
1 //标题 2 Title = "标题"; 3 //关键词 4 HtmlMeta meta1 = new HtmlMeta(); 5 meta1.Name = "keywords"; 6 meta1.Content = "关键词"; 7 this.Page.Header.Controls.Add....
分类:Web程序   时间:2014-06-03 16:36:14    阅读次数:284
TI_DSP_corePac_带宽管理 - 2(举例)
The master DMA arbitration control register (MDMAARBU) controls the priority levels of MDMA requests going out of CorePac. It controls the priority levels used by the L2 memory controller when sendi...
分类:其他好文   时间:2014-06-03 02:39:09    阅读次数:311
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!