ユーザーが右からスワイプして、Windows 8 のチャーム バーから設定を開くことができるようにするゲームを作成しています。
多くのことを試しましたが、うまくいきませんでした。やったことある人いたら、どうやってやったか教えてください。Visual Studio 2012 Express を使用しています。
質問する
4836 次
3 に答える
13
アップデート:
Windows 8.1 以降では、SettingsFlyout コントロールが Windows ストア アプリのコントロール コレクションに追加されました。
追加 => 新規 => 設定フライアウト
次に、次のように追加します。
sealed partial class App
{
public App()
{
this.InitializeComponent();
this.Suspending += OnSuspending;
}
protected override void OnWindowCreated(WindowCreatedEventArgs args)
{
SettingsPane.GetForCurrentView().CommandsRequested += OnCommandsRequested;
}
private void OnCommandsRequested(SettingsPane sender, SettingsPaneCommandsRequestedEventArgs args)
{
var setting = new SettingsCommand("MySetting", "MySetting", handler =>
new MySettingsFlyout().Show());
args.Request.ApplicationCommands.Add(setting);
}
結果:
それを行う古い方法:
Windows 8でxamlとc#を使用する方法は次のとおりです
1.xaml ユーザーコントロールを作成する
<UserControl
x:Class="CSharp_Settings.Settings.Help_Settings"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
mc:Ignorable="d"
d:DesignHeight="300"
d:DesignWidth="646">
<Border BorderBrush="#FF590151" BorderThickness="1">
<Grid Background="White" VerticalAlignment="Stretch">
<Grid.RowDefinitions>
<RowDefinition Height="80"/>
<RowDefinition Height="*"/>
</Grid.RowDefinitions>
<Grid Background="#FFFF00F2" Grid.Row="0">
<Grid Margin="40,20,17,13">
<Grid.Transitions>
<TransitionCollection>
<EntranceThemeTransition FromHorizontalOffset="50" />
</TransitionCollection>
</Grid.Transitions>
<Grid.ColumnDefinitions>
<ColumnDefinition Width="50" />
<ColumnDefinition Width="*" />
<ColumnDefinition />
</Grid.ColumnDefinitions>
<Button Click="Button_Click_1" Margin="0,3,0,0" Grid.Column="0"
HorizontalAlignment="Left" Style="{StaticResource BackButtonStyle}"/>
<TextBlock Margin="10,5,0,0" Grid.Column="1" FontFamily="Segoe UI"
FontWeight="SemiLight" FontSize="24.6667" Text="Help" HorizontalAlignment="Left" />
<Image Source="/Assets/icon.png" HorizontalAlignment="Right" Grid.Column="2"
Margin="0,0,6,0" />
</Grid>
</Grid>
<Grid Grid.Row="1" Margin="40,24,23,0" VerticalAlignment="Top">
<Grid.Transitions>
<TransitionCollection>
<EntranceThemeTransition FromHorizontalOffset="120" />
</TransitionCollection>
</Grid.Transitions>
<TextBlock Text="Something" Foreground="Black"/>
</Grid>
</Grid>
</Border>
</UserControl>
ユーザーコントロールのコードビハインド
using Windows.UI.ApplicationSettings;
using Windows.UI.Xaml;
using Windows.UI.Xaml.Controls.Primitives;
namespace CSharp_Settings.Settings
{
public sealed partial class Help_Settings
{
public Help_Settings()
{
InitializeComponent();
}
private void Button_Click_1(object sender, RoutedEventArgs e)
{
if (Parent is Popup)
((Popup)Parent).IsOpen = false;
SettingsPane.Show();
}
}
}
アプリに設定ペインを登録する
using CSharp_Settings.Settings;
using Windows.Foundation;
using Windows.UI.ApplicationSettings;
using Windows.UI.Core;
using Windows.UI.Popups;
using Windows.UI.Xaml;
using Windows.UI.Xaml.Controls;
using Windows.UI.Xaml.Controls.Primitives;
namespace CSharp_Settings
{
public sealed partial class MainPage
{
public MainPage()
{
InitializeComponent();
_window = Window.Current.Bounds;
Window.Current.SizeChanged += OnWindowSizeChanged;
SettingsPane.GetForCurrentView().CommandsRequested += CommandsRequested;
}
private Rect _window;
private Popup _popUp;
private const double WIDTH = 646;
private void OnWindowSizeChanged(object sender, WindowSizeChangedEventArgs e)
{
_window = Window.Current.Bounds;
}
private void CommandsRequested(SettingsPane sender, SettingsPaneCommandsRequestedEventArgs args)
{
args.Request.ApplicationCommands.Add(new SettingsCommand("help", "Help", Handler));
}
private void Handler(IUICommand command)
{
_popUp = new Popup
{
Width = WIDTH,
Height = _window.Height,
IsLightDismissEnabled = true,
IsOpen = true
};
_popUp.Closed += OnPopupClosed;
Window.Current.Activated += OnWindowActivated;
_popUp.Child = new Help_Settings {Width = WIDTH, Height = _window.Height};
_popUp.SetValue(Canvas.LeftProperty, SettingsPane.Edge == SettingsEdgeLocation.Right ? (_window.Width - WIDTH) : 0);
_popUp.SetValue(Canvas.TopProperty, 0);
}
private void OnWindowActivated(object sender, WindowActivatedEventArgs e)
{
if (e.WindowActivationState == CoreWindowActivationState.Deactivated)
_popUp.IsOpen = false;
}
private void OnPopupClosed(object sender, object e)
{
Window.Current.Activated -= OnWindowActivated;
}
}
}
Javascript と html では、html で作成します。
<!doctype HTML>
<html>
<body>
<div style="border: 1px solid #AB00A5" data-win-control="WinJS.UI.SettingsFlyout" data-win-options="{settingsCommandId:'help', width:'narrow'}">
<div class="win-ui-dark win-header" style="background-color:#FF00F7">
<button type="button" onclick="WinJS.UI.SettingsFlyout.show()" class="win-backbutton"></button>
<div class="win-label"> Help</div>
<img src="../images/icon.png" style="position: absolute; right: 40px; width:35px; height:35px"/>
</div>
<div class="win-content win-settings-section">
<h3>Help!</h3>
<p> No help for you muahahaha</p>
</div>
</div>
</body>
</html>
Function to register the settings pane:
(function () {
"use strict";
WinJS.Application.onsettings = function (e) {
e.detail.applicationcommands = {
"about": {
title: "About",
href: "/html/settings_about.html"
},
"help": {
title: "Help",
href: "/html/settings_help.html"
}
};
WinJS.UI.SettingsFlyout.populateSettings(e);
};
WinJS.Application.start();
})();
次の点に注意してください。
- エントリ ポイントに 1 語のラベルを使用する
- 最大 4 つのエントリ ポイントを推奨
- 狭い = 346 ピクセル
- ワイド = 646 ピクセル。
- スクリーンと同じ高さ。
- ヘッダー : 戻るボタン + エントリ ポイントの名前 + アプリ アイコン、アプリ タイルと同じ背景色
- 設定パネルの境界線の色はヘッダーの色よりも 20% 暗く、背景は白にする必要があります。
- スクロールはOKですが、最大で高さの2倍
- ナビゲーション、コマンド、または変更をコミットするためのボタンはありません
- エントリ ポイントがクリックされた場合の直接的なアクションはありません 許可コマンドはシステム制御です
- 入口アニメーション付きのフライアウトにする必要があります
- 簡単に却下可能 設定と同じ側にある必要があります (SettingsEdgeLocation プロパティを使用)
于 2013-02-23T17:30:38.413 に答える
0
これが必要なものです SettingsPane クラス
于 2013-02-23T17:36:45.200 に答える
0
おそらく最良の方法は、Callisto のヘルパー クラスを使用することです。
于 2013-02-24T02:04:14.763 に答える