「C Sharpコード集」の版間の差分
ナビゲーションに移動
検索に移動
(ページの作成: C#のコード集です。本人も理解していない事が多いので、技術的な解説は省略しています。 カテゴリ分けは後日。 == WPF画面を別ス…) |
|||
7行目: | 7行目: | ||
Window1クラスがWPF画面となります。 | Window1クラスがWPF画面となります。 | ||
<source lang=" | <source lang="csharp"> | ||
using System; | using System; | ||
using System.Collections.Generic; | using System.Collections.Generic; |
2010年5月23日 (日) 08:06時点における版
C#のコード集です。本人も理解していない事が多いので、技術的な解説は省略しています。
カテゴリ分けは後日。
WPF画面を別スレッド経由で表示する
Window1クラスがWPF画面となります。
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Windows;
namespace WpfApplication2
{
class ThreadClass1
{
public void method00()
{
Action action = () => {
var dispatcher = Application.Current.Dispatcher;
dispatcher.Invoke((Action)delegate()
{
method01();
});
};
action.BeginInvoke(null, null);
}
private void method01()
{
new Window1().Show();
}
}
}