码迷,mamicode.com
首页 >  
搜索关键字:child m_pparent    ( 3634个结果
C#操作XML配置文件
1 /// <summary> 2 /// 根据Key取Value值 3 /// </summary> 4 /// <param name="key"></param> 命名空间: using System.Configuration; using System.Web; 5 public stat ...
分类:Windows程序   时间:2020-03-14 14:42:37    阅读次数:66
CSS常见布局解决方案
水平居中布局 1.margin + 定宽 <div class="parent"> <div class="child">Demo</div> </div> <style> .child { width: 100px; margin: 0 auto; } </style> 相必是个前端都见过,这定宽 ...
分类:Web程序   时间:2020-03-14 11:22:34    阅读次数:77
CBCGPDockingControlBar禁止悬浮
如果不想使停靠对话框可移动的话,在创建的时候 不要使用WS_CAPTION标题栏这一属性,没有这个属性就不能拖动了, 别的办法还没找到 if (!m_wndFoldersBar.Create(_T("Color Chooser"), this, CRect(0, 0, nFoldersPaneSiz ...
分类:其他好文   时间:2020-03-14 10:41:23    阅读次数:212
在django中使用celery异步任务和定时任务
在django中使用celery Django版本1.9.8 pip install django-celery Redis要指定版本,默认的3.x版本有问题 Pip uninstall redis pip install redis==2.10.6 创建django的app celery_cour ...
分类:其他好文   时间:2020-03-14 00:55:00    阅读次数:76
fork()系统调用的理解
系统调用fork()用于创建一个新进程。我们可以通过下面的代码来理解,最好是能自己敲一遍运行验证。 ?#include<stdio.h> #include<stdlib.h> #include<unistd.h> ? int main(int args, char *argv[]){ printf( ...
分类:其他好文   时间:2020-03-13 21:02:34    阅读次数:76
数据结构PTA(浙大mooc)
04-树5 Root of AVL Tree (25分) An AVL tree is a self-balancing binary search tree. In an AVL tree, the heights of the two child subtrees of any node dif ...
分类:其他好文   时间:2020-03-13 19:01:17    阅读次数:77
Center
用于使子Widget居中的Widget。包含三个属性: widthFactor 宽度因子,表示为该Widget宽度比子Widget宽度的倍数。 heightFactor 高度因子,表示为该Widget高度比子Widget高度的倍数。 child 包含的子Widget。 Widget getCente ...
分类:其他好文   时间:2020-03-13 17:12:11    阅读次数:50
自定义alert弹框,去掉IP以及端口号提示
先放一个例子吧 // 因需求增加提示框,樣式需要增加到容易修改的地方 // 彈框樣式一 沒什麼樣式 去掉了ip地址而已 alert1(name){ var iframe = document.createElement("IFRAME"); iframe.style.display="none"; ...
分类:其他好文   时间:2020-03-12 23:29:48    阅读次数:104
CSS技巧-01 如何实现一个元素在页面中水平垂直居中
(1)知道子元素的宽高 <!--父元素相对定位--> <!--子元素绝对定位--> .child{ position:absolute; top:50%; left:50%; margin-left:-50px; margin-top:-50px; } (2)不考虑子元素的宽高 <!--父元素不能有 ...
分类:Web程序   时间:2020-03-12 14:08:21    阅读次数:98
异步加载text资源,加载一次、执行一次、链式回调
function getText(time,callback) { setTimeout(function () { callback(time) },time) } var callbackMap={};//记录加载完成的回调 var resMap={};//记录url var loadbackM ...
分类:其他好文   时间:2020-03-11 09:12:58    阅读次数:65
3634条   上一页 1 ... 32 33 34 35 36 ... 364 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!