资源简介

Direct2D D2D 程序示例

资源截图

代码片段和文件信息

//// THIS CODE AND INFORMATION IS PROVIDED “AS IS“ WITHOUT WARRANTY OF
//// ANY KIND EITHER EXPRESSED OR IMPLIED INCLUDING BUT NOT LIMITED TO
//// THE IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A
//// PARTICULAR PURPOSE.
////
//// Copyright (c) Microsoft Corporation. All rights reserved

#include “pch.h“
#include “App.xaml.h“

using namespace D2D3DTransforms;

using namespace Platform;
using namespace Windows::ApplicationModel;
using namespace Windows::ApplicationModel::Core;
using namespace Windows::ApplicationModel::Activation;
using namespace Windows::Foundation;
using namespace Windows::Foundation::Collections;
using namespace Windows::Graphics::Display;
using namespace Windows::UI::Core;
using namespace Windows::UI::ViewManagement;
using namespace Windows::UI::Xaml;
using namespace Windows::UI::Xaml::Controls;
using namespace Windows::UI::Xaml::Controls::Primitives;
using namespace Windows::UI::Xaml::Data;
using namespace Windows::UI::Xaml::Input;
using namespace Windows::UI::Xaml::Media;
using namespace Windows::UI::Xaml::Navigation;
using namespace Windows::UI::Xaml::Media::Animation;


App::App()
{
    // Used by compiler-generated code.
    InitializeComponent();
}

void App::OnLaunched(
    _In_ LaunchActivatedEventArgs^ args
    )
{
    m_mainPage = ref new MainPage();

    Window::Current->Content = m_mainPage;
    Window::Current->Activate();

    Suspending += ref new SuspendingEventHandler(this &App::OnSuspending);
}

void App::OnSuspending(
    _In_ object^ sender
    _In_ SuspendingEventArgs^ args
    )
{
    m_mainPage->OnSuspending(sender args);
}

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

    .......      1956  2012-09-28 07:47  Direct2D\Direct2D 3D transform effect sample\C++\App.xaml

    .......      1671  2012-09-28 07:47  Direct2D\Direct2D 3D transform effect sample\C++\App.xaml.cpp

    .......      1176  2012-09-28 07:47  Direct2D\Direct2D 3D transform effect sample\C++\App.xaml.h

    .......      2081  2012-09-28 07:47  Direct2D\Direct2D 3D transform effect sample\C++\D2D3DTransforms.sln

    .......     12366  2012-09-28 07:47  Direct2D\Direct2D 3D transform effect sample\C++\D2D3DTransforms.vcxproj

    .......     23125  2012-09-28 07:47  Direct2D\Direct2D 3D transform effect sample\C++\D2D3DTransformsRenderer.cpp

    .......      4832  2012-09-28 07:47  Direct2D\Direct2D 3D transform effect sample\C++\D2D3DTransformsRenderer.h

    .......     15309  2012-09-28 07:47  Direct2D\Direct2D 3D transform effect sample\C++\DirectXbase.cpp

    .......      2629  2012-09-28 07:47  Direct2D\Direct2D 3D transform effect sample\C++\DirectXbase.h

    .......       667  2012-09-28 07:47  Direct2D\Direct2D 3D transform effect sample\C++\DirectXSample.h

    .......     11672  2012-09-28 07:47  Direct2D\Direct2D 3D transform effect sample\C++\MainPage.xaml

    .......      9893  2012-09-28 07:48  Direct2D\Direct2D 3D transform effect sample\C++\MainPage.xaml.cpp

    .......      3691  2012-09-28 07:48  Direct2D\Direct2D 3D transform effect sample\C++\MainPage.xaml.h

    .......    158701  2012-09-28 07:48  Direct2D\Direct2D 3D transform effect sample\C++\mammoth_small.jpg

    .......      1280  2012-09-28 07:48  Direct2D\Direct2D 3D transform effect sample\C++\Package.AppxManifest

    .......       412  2012-09-28 07:48  Direct2D\Direct2D 3D transform effect sample\C++\pch.cpp

    .......       673  2012-09-28 07:48  Direct2D\Direct2D 3D transform effect sample\C++\pch.h

    .......      4535  2012-09-28 07:48  Direct2D\Direct2D 3D transform effect sample\C++\PersistentState.cpp

    .......      1519  2012-09-28 07:48  Direct2D\Direct2D 3D transform effect sample\C++\PersistentState.h

    .......      1248  2012-09-28 07:48  Direct2D\Direct2D 3D transform effect sample\C++\smallTile-sdk.png

    .......      5068  2012-09-28 07:48  Direct2D\Direct2D 3D transform effect sample\C++\splash-sdk.png

    .......      2482  2012-09-28 07:48  Direct2D\Direct2D 3D transform effect sample\C++\squareTile-sdk.png

    .......      1550  2012-09-28 07:48  Direct2D\Direct2D 3D transform effect sample\C++\storeLogo-sdk.png

    .......      2997  2012-09-28 07:48  Direct2D\Direct2D 3D transform effect sample\C++\windows-sdk.png

    .......     71814  2012-09-28 07:47  Direct2D\Direct2D 3D transform effect sample\description\Brand.css

    .......     10479  2012-09-28 07:47  Direct2D\Direct2D 3D transform effect sample\description\Galleries.css

    .......      3369  2012-09-28 07:47  Direct2D\Direct2D 3D transform effect sample\description\iframedescription.css

    .......      1727  2012-09-28 07:47  Direct2D\Direct2D 3D transform effect sample\description\Layout.css

    .......      1670  2012-09-28 07:47  Direct2D\Direct2D 3D transform effect sample\description\offline.js

    .......     13762  2012-09-28 07:47  Direct2D\Direct2D 3D transform effect sample\description.html

............此处省略690个文件信息

评论

共有 条评论