Created
January 12, 2014 19:08
-
-
Save egtra/8388988 to your computer and use it in GitHub Desktop.
C++/CLIによるWPF最小限のコード例。
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #using <PresentationCore.dll> | |
| #using <PresentationFramework.dll> | |
| #using <WindowsBase.dll> | |
| using namespace System; | |
| namespace wpf = System::Windows; | |
| namespace input = System::Windows::Input; | |
| [STAThread] | |
| int main() | |
| { | |
| auto w = gcnew wpf::Window; | |
| auto app = gcnew wpf::Application; | |
| return app->Run(w); | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment