在Windows 8教程中添加漫游设置的位置 - 初学者

时间:2012-12-26 17:17:13

标签: windows windows-8

我是Windows 8开发的新手。我正在按照Windows 8团队提供的教程进行操作,并遇到了一些问题。

有人可以告诉我在哪里插入tutorial中解释的以下代码块。 (在步骤2中)

   Windows.Storage.ApplicationDataContainer roamingSettings = 
            Windows.Storage.ApplicationData.Current.RoamingSettings;
        roamingSettings.Values["userName"] = nameInput.Text;

我正在查看MainPage.xaml.cs,但它没有TextField的任何定义。那么我应该在哪里添加这个代码块。

1 个答案:

答案 0 :(得分:1)

该定义可在MainPage.xaml中找到,而不是MainPage.xaml.cs:

            <TextBox x:Name="nameInput" Width="300" HorizontalAlignment="Left"
                     TextChanged="NameInput_TextChanged"/>

MainPage.xaml.cs是xaml的部分类,因此x​​aml中声明的所有控件都可以从.cs文件中获得。

请参阅已完成的示例here