[PR]
×
[PR]上記の広告は3ヶ月以上新規記事投稿のないブログに表示されています。新しい記事を書く事で広告が消えます。
プログラミング、3DCGとその他いろいろについて
[PR]上記の広告は3ヶ月以上新規記事投稿のないブログに表示されています。新しい記事を書く事で広告が消えます。
(import (rnrs) (ironscheme clr)) (clr-reference PresentationFramework) (clr-reference PresentationCore) (clr-reference WindowsBase) (clr-using System.Windows) (clr-using System.Threading) (define runApplication (lambda () (define app (clr-new Application)) (clr-call Application Run app (clr-new Window)))) (define staThread (clr-new Thread runApplication)) (clr-call Thread SetApartmentState staThread 'STA) (clr-call Thread Start staThread)
using System.Windows; using System.Threading; class Program { static void runApplication() { var app = new Application(); app.Run(new Window()); } static void Main(string[] args) { var staThread = new Thread(runApplication); staThread.SetApartmentState(ApartmentState.STA); staThread.Start(); } }そうですね