01 March 2017

Windows Store:Tạo project Hello Word chạy trên Windows 10

Yêu cầu: Sử dụng Windows 10 và Visual Studio 2015
- Tạo mới project
- Trên màn hình chính của Visual Studio , chọn FILE -> New Project...
- Trên cửa sổ Solution Explorer chọn MainPage.xaml
- Bật cửa sổ ToolBox để kéo thả với Design: View > ToolBox
- Công cụ Toolbox được sử dụng để thiết kế bố trí và giao diện
- Thử nghiệm với TextBlock đặt trong trang và thay đổi văn bản Hello Word!
- Chạy trên máy Local Machine
- Chạy trên máy ảo Simulator
- Trên màn hình Windows 10 hiển thị ứng dụng App1
- Các biểu tượng của ứng dụng được mô phỏng ngay trên cửa sổ Windows
MainPage.xaml
Windows Store 2017
<Page
    x:Class="App1.MainPage"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:local="using:App1"
    xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
    xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
    mc:Ignorable="d">

    <Grid Background="{ThemeResource ApplicationPageBackgroundThemeBrush}">
        <TextBlock x:Name="textBlock" HorizontalAlignment="Left" Margin="240,360,0,0" TextWrapping="Wrap" Text="Hello Word!" VerticalAlignment="Top" FontSize="48"/>

    </Grid>
</Page>
MainPage.xaml.cs
Windows Store 2017
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Runtime.InteropServices.WindowsRuntime;
using Windows.Foundation;
using Windows.Foundation.Collections;
using Windows.UI.Xaml;
using Windows.UI.Xaml.Controls;
using Windows.UI.Xaml.Controls.Primitives;
using Windows.UI.Xaml.Data;
using Windows.UI.Xaml.Input;
using Windows.UI.Xaml.Media;
using Windows.UI.Xaml.Navigation;

// The Blank Page item template is documented at http://go.microsoft.com/fwlink/?LinkId=234238

namespace App1
{
    /// <summary>
    /// An empty page that can be used on its own or navigated to within a Frame.
    /// </summary>
    public sealed partial class MainPage : Page
    {
        public MainPage()
        {
            this.InitializeComponent();
        }
    }
}

0 nhận xét:

Post a Comment

 

BACK TO TOP

Xuống cuối trang