大家知道WPF中多线程访问UI控件时会提示UI线程的数据不能直接被其他线程访问或者修改,该怎样来做呢?分下面两种情况1.WinForm程序 1 2
1)第一种方法,使用委托: 3 private delegate void SetTextCallback(string text); 4 ...
分类:
编程语言 时间:
2014-05-14 03:01:21
阅读次数:
246
在使用多线程时,一般很少有多个线程完全独立的工作。往往是多个线程同时操作一个全局变量来获取程序的运行结果。多个线程同时访问同一个全局变量,如果都是读取操作,则不会出现问题。如果是写操作,则会发生错误。这时候,我们可以通过临界区,为全局变量设置一个保护,保证同时只有一个线程可以访问此变量,其他变量进入等待状态。
临界区(Critical Section)是一段独占对某些共享资源访问...
分类:
编程语言 时间:
2014-05-14 00:10:15
阅读次数:
399
1.展示显示textTicker和只有icon的两种情况:当参数showTicker为true时显示否则不显示
// In this sample, we'll use the same text for the ticker and the expanded notification
CharSequence text = getText(textId);
...
分类:
移动开发 时间:
2014-05-13 00:02:35
阅读次数:
465
通常的写法是select方法后跟一个blur方法,但是这里我们不能使用blur方法,应该将blur改为window.parent.document.body.focus();
分类:
其他好文 时间:
2014-05-12 19:23:37
阅读次数:
995
将Object转换为XDocment对象代码如下:C# – Object to XDocument 1
using System; 2 using System.Collections.Generic; 3 using System.Linq; 4 using
System.Text; 5 usin...
分类:
Web程序 时间:
2014-05-12 04:11:31
阅读次数:
371
在web项目中,ajax运用非常频繁,今天就给大家展示下DjangoajaxPost的使用方法templates模板---------------------index.html<html>
<header></header>
<body>
<p>name:<inputtype="text"name="nickname"/></p>
<inputclass="nam..
分类:
其他好文 时间:
2014-05-12 03:23:21
阅读次数:
359
SimpleDateFormate sdf = new
SimpleDateFormate("yyyy-MM-dd HH:MM:ss");String s =
sdf.format(Date)然后这个s输出时的月份老是不对后来看了一下API"yyyy-MM-dd HH:MM:ss"这段室友讲究的M代...
分类:
编程语言 时间:
2014-05-12 03:05:56
阅读次数:
249
上传图片,将图片名称插入到数据表中 protected void
btnSend_Click(object sender, EventArgs e) { string Name = txtName.Text; string
pictureName = fupP...
分类:
数据库 时间:
2014-05-12 01:04:51
阅读次数:
293
if (radioButton1.Checked == true) textBox2.Text =
姓名: + textBox1.Text + 性别: + radioButton1.Text + 专业 + comboBox1.Text; else
textBox2.Text = 姓名: + text...
分类:
其他好文 时间:
2014-05-11 16:58:29
阅读次数:
199
Given an array of words and a length L, format
the text such that each line has exactly L characters and is fully (left and
right) justified.You shoul...
分类:
其他好文 时间:
2014-05-11 15:15:29
阅读次数:
287