簡單一條 Command:
2010年8月17日 星期二
2010年8月4日 星期三
.Net Windows Form 拖拉放的用法
基本上是 DragEnter 事件要設定 Effect 屬性,與 DragDrop 事件要處理使用者放下來的資料就行了:
private void Form1_DragEnter(object sender, DragEventArgs e)
{
e.Effect = DragDropEffects.All;
}
private void Form1_DragDrop(object sender, DragEventArgs e)
{
foreach(string each in e.Data.GetFormats())
Console.WriteLine(each);
}
private void Form1_DragEnter(object sender, DragEventArgs e)
{
e.Effect = DragDropEffects.All;
}
private void Form1_DragDrop(object sender, DragEventArgs e)
{
foreach(string each in e.Data.GetFormats())
Console.WriteLine(each);
}
2010年8月3日 星期二
Postgresql 的 information_schema 完整說明
http://www.postgresql.org/docs/current/static/information-schema.html
訂閱:
文章 (Atom)