function selectAll(obj) { if (obj.checked) { $("input[type='checkbox']").each(function () { $(this).attr('checked', 'checked'); }); } else { $("input[type='checkbox']").each(function () { $(this).removeAttr('checked'); }); } } function…
先引入先在你的页面引入 bootstrap-select.css 和 bootstrap-select.js <link href="~/Content/plugins/bootstrap-select/bootstrap-select.min.css" rel="stylesheet" /> <script src="~/Content/plugins/bootstrap-select/bootstrap-select.min.js&q…
#encoding:utf-8 import wx import wx.lib.agw.customtreectrl as CT class MyFrame(wx.Frame): def __init__(self, parent): self.checked_items = [] wx.Frame.__init__(self, parent, -1, "customtreectrl") self.custom_tree = CT.CustomTreeCtrl(self, agwSty…
num_length.Focus();                    UpDownBase updbText = (UpDownBase)num_length;                    num_length.Select(0, updbText.Text.Length);…
代码: using System; using System.Web; using System.Web.UI; using System.Web.UI.WebControls; namespace DemoWebControl { /// <summary> /// 自己的Asp.Net服务器组件 一个DIV控件:拖拽控件之后,自动输出 需要的 Js到界面 /// </summary> public class DemoJsCtrl : WebControl { protecte…
夏荣全 ( lyout(at)163.com )原文 C#中让控件全屏显示的实现代码(WinForm) 有时候需要让窗口中某一块的内容全屏显示,比如视频播放.地图等等.经过摸索,暂时发现两种可行方法,如果有谁知道其他方法,敬请告知 1.使用winapi “SetParent” 接口: [DllImport("user32.dll", SetLastError = true)] static extern IntPtr SetParent(IntPtr hWndChild, IntPtr…
Android 自定义支持快速搜索筛选的选择控件 项目中遇到选择控件选项过多,需要快速查找匹配的情况. 做了简单的Demo,效果图如下: 源码地址:https://github.com/whieenz/SearchSelect 这个控件是由Dialog+SearchView+ListView实现的.Dialog用来承载选择控件,SearchView实现输入,ListView展示结果.设计概要图如下: 一.自定义Dialog Dialog布局文件 <?xml version="1.0&quo…
原文:WPF编程,通过KeyFrame 类型制作控件线性动画的一种方法. 版权声明:我不生产代码,我只是代码的搬运工. https://blog.csdn.net/qq_43307934/article/details/87271931 From/To/By类型的动画仅支持从一个值到另一个值的线性内插, 或者有限形式的非线性内插(AccelerationRatio和DecelerationRatio). 如果要描述一个更复杂的动画,如希望一个动画的属性从A值到B值再到C值,则用Key frame…
搜索菜单栏侧滑效果控件SearchView 本人视频教程系类   iOS中CALayer的使用 效果1: 效果2: 项目中用到的图片 bgImg@2x.png: 源码: SearchView.h + SearchView.m // // SearchView.h // SearchView // // Created by YouXianMing on 14/12/25. // Copyright (c) 2014年 YouXianMing. All rights reserved. // #i…
用常规方法实现全屏显示时,由于采用的三方控件导致界面顶端一直有一条半透明的类似标题栏的东西无法去除,原因一直没找到. 下面综合整理下网上两位博主的用WindowsAPI实现全屏的方法: 控件全屏显示: http://www.cnblogs.com/lmcblog/archive/2012/07/14/2591501.html 任务栏.开始菜单栏显示隐藏:http://www.cnblogs.com/ITBread/p/3503801.html 我把代码整理下,方便下次自己查看 1.任务栏.菜单栏…