- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我一直在利用业余时间开发一个 UWP 项目,以熟悉 UWP、MVVM 和 Prism。该项目最初非常经典,没有使用 MVVM 和 Prism,我一直在努力将这 2 个纳入项目。我一直依赖https://msdn.microsoft.com/en-us/library/gg405484(v=pandp.40).aspx , https://msdn.microsoft.com/en-us/library/gg405494(v=pandp.40).aspx和 https://msdn.microsoft.com/en-us/library/ff921098(v=pandp.40).aspx努力解决它。
一些背景:我最初有一个从我的 Mainpage.xaml
到 MainPage.xaml.cs
代码隐藏的直接函数调用,但是在转换为 MVVM 和一个单独的usercontrol,我删除了该函数调用,以便以后可以使用命令绑定(bind)。在我删除它之后,我在 GameRouletteView.g.i.cs 中的某个地方得到了一个错误,这是这个删除的函数调用的残余,g.i.cs 文件假设它仍然是绑定(bind)的。我重建了我的项目,那些 g.i.cs 文件显然被删除了。
我将以下行添加到我的用户控件 View 中,以便添加我的 ViewModel:
xmlns:gameRoulette="using:GameRoulette.DesignViewModels"
xmlns:prism="using:Prism.Windows.Mvvm"
d:DataContext="{d:DesignInstance gameRoulette:GameRouletteDesignViewModel, IsDesignTimeCreatable=True}"
prism:ViewModelLocator.AutoWireViewModel="True"
完整代码:
<UserControl
x:Class="GameRoulette.Views.GameRouletteView"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="using:GameRoulette.Views"
xmlns:gameRoulette="using:GameRoulette.DesignViewModels"
xmlns:prism="using:Prism.Windows.Mvvm"
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="400"
d:DataContext="{d:DesignInstance gameRoulette:GameRouletteDesignViewModel, IsDesignTimeCreatable=True}"
prism:ViewModelLocator.AutoWireViewModel="True">
<Grid Background="White">
<Button x:Name="btnSelectGames" Content="Click here to select your games"
HorizontalAlignment="Left" Margin="110,50,0,0"
VerticalAlignment="Top" Height="40" Width="240"
Click="{Binding SelectCommand}"/>
<Button x:Name="btnChooseGame" Content=""
HorizontalAlignment="Left" Margin="110,150,0,0"
VerticalAlignment="Top" Width="240" Height="40"
Click="{Binding ChooseCommand}" IsEnabled="True"/>
<ProgressRing HorizontalAlignment="Left" Margin="200,100,0,0"
VerticalAlignment="Top" RenderTransformOrigin="1.05,1.983"
Height="45" Width="45" IsActive="True" Visibility="{Binding }"/>
<Image x:Name="imgFileIcon" HorizontalAlignment="Left"
Height="64" Margin="110,224,0,0"
VerticalAlignment="Top" Width="64" />
<TextBlock x:Name="lblFileName" HorizontalAlignment="Left"
Margin="179,224,0,0" TextWrapping="Wrap"
Text="" VerticalAlignment="Top" Width="171" Height="64"/>
</Grid>
</UserControl>
它给出了以下错误:
The name "GameRouletteDesignViewModel" does not exist in the namespace "using:GameRoulette.DesignViewModels".
我重建了项目,然后它为我的 3 个 .xaml 文件中的每一个都给出了以下错误:GameRouletteView、App.xaml
和MainPage.xaml
:
'GameRouletteView' does not contain a definition for 'InitializeComponent' and no extension method 'InitializeComponent' accepting a first argument of type 'GameRouletteView' could be found (are you missing a using directive or an assembly reference?)
另外,当第一次打开项目时,我得到 Intellisense 错误:
[Failure] Could not find file 'C:\Users\username\Source\Repos\GameRoulette\GameRoulette\GameRoulette\obj\ARM\Debug\MainPage.g.i.cs'.
[Failure] Could not find file 'C:\Users\username\Source\Repos\GameRoulette\GameRoulette\GameRoulette\obj\ARM\Debug\Views\GameRouletteView.g.i.cs'.
[Failure] Could not find file 'C:\Users\username\Source\Repos\GameRoulette\GameRoulette\GameRoulette\obj\ARM\Debug\App.g.i.cs'.
我已经排除的事情:
我用谷歌搜索了这个错误,但我真的找不到任何我还没有尝试过的东西。
我还注意到我的 NuGet 包丢失了,而且我的包管理器控制台不再识别 NuGet。我也收到此错误:
Microsoft.NETCore.Portable.Compatibility 1.0.0 provides a compile-time reference assembly for mscorlib on UAP,Version=v10.0, but there is no run-time assembly compatible with win10.
我感觉所有这些问题都是相关的,但我无法弄清楚它有什么问题。如上所述,Google 并没有真正提供太多帮助,而且它提供的帮助也不起作用。
我正在使用带有更新 1 的 Visual Studio 2015 社区版。可以在 https://github.com/nzall/GameRoulette 找到该项目。 .
最佳答案
我已经为这个问题苦苦挣扎了几天,而且,至少就我而言,我很确定它取决于我在我的 xaml 代码中无意中引入的一些细微错误。或者,更好的是,不完全是错误,而是我们目标平台的 xaml 版本不支持的东西。在这种情况下,xaml 解析器会失败,并且不会按预期生成 g.i.cs 文件(其中包含由解析器生成的部分页面和应用程序类,包括 InitializeComponent 方法)。我为什么这么认为?
关于c# - g.i.cs 文件丢失,类不再包含 InitializeComponent 的定义,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35259603/
好吧,我怀疑这可能是 Visual Studio 的问题,但肯定有一些原因。我从默认项目列表创建了一个 ListBox(右键单击项目或项目中的文件夹 -> 添加 -> 新项目 -> Xaml List
我已经尝试开始使用.Net Maui,并且已经按照中所述的步骤设置了开发环境:。我还运行了‘Maui-Check’CLI工具,一切都已检查完毕,但当我使用Visual Studio2019 v16.1
如果我在 Visual Studio 2010 SP1 中创建一个新项目并选择“WPF 应用程序”并尝试构建生成的应用程序,则会收到错误 The name 'InitializeComponent'
InitializeComponent(); 此代码行出现在我所有 Xaml 页面的构造函数中的代码后面。 它引发以下错误: InitializeComponent does not exist. 虽
我承认我是xaml 世界的新手但是看到使用内置 Visual Studio 模板的警告表明可能还有另一个问题除了我的大脑。 如果我创建一个空的 VSIX Project (必须是 VSIX 项目)在
我想了解如何使用 C# 构建文件,因此我创建了一个 Windows 窗体应用程序并创建了此代码/窗体。但它似乎没有用。 . using System; using System.Windows.For
该应用程序是在运行 windows 10 的机器上开发的,系统语言设置为我们的本地语言丹麦语。现在我们正处于需要在其他国家的办公室使用该软件的阶段。但是, View 在这些机器上启动时崩溃,而且我发现
我正在尝试在 WPF 中创建自定义用户控件。我希望以后在另一个窗口中使用该控件时能够手动设置大小。 作为一个简短的测试,我刚刚制作了一个包含网格内 Canvas 的控件,它完全填满了控件。初始化时,它
如果我创建一个 winForms“myForm”,则会生成以下样板代码: public partial class myForm: Form { public myForm() {
我的 WPF 用户控件的公共(public)接口(interface)包含自动生成的 InitializeComponent 方法(包含在部分类中)。这对我来说是一个惊喜,因为我期望这样一个内部的东西
首先,我使用的是 Visual Studio 2010,Measurement Studio 2010 plugin 、C# 和 .NET 4.0。 我的应用程序从 USB 设备接收数据,并使用 Wa
我正在尝试关注 this little tutorial ,但我不断收到此异常。 相关的 XAML 如下所示:
在对组件模型的影响方面是否存在任何实际差异: class MyComponent : Component { public MyComponent() { Initialize
我有一个简单的WPF页面,上面有几个radiobuttons,每个RadioButton均以检查事件处理程序注册,以便在更改选择时发生某些事情。默认情况下,我希望选择这些 RadioButtons 之
我在 StackOverflow 上检查了所有类似的问题,但没有一个答案能解决我的问题。我只是得到标题中的错误。 这是我的 MainVindow.xaml:
好的。这个有点傻。 我正在为 Access 数据库编写前端代码(我知道,重新发明轮子)。这个前端很简单。个人可以添加新条目或搜索现有条目。这两个都工作正常。该程序是 self 更新的,但非常简单。它比
我有部分公开课 namespace BugNetWPF { public partial class ReportScreen_IdRangeReport : Page {
使用 Suversion 和 WinDiff 分支/合并类项目和网络项目没有问题。 我永远无法合并的唯一一种项目是 winform 项目。 InitializeComponent 方法总是在仅进行少量
我正在尝试调用 InitializeComponent 方法,但出现以下错误: Type 'WindowsFormsApplication1.Form1' already defines a memb
当您在设计时修改 ListView 的列标题时,设计器会生成代码以在运行时序列化列标题: private void InitializeComponent() { this.listView1
我是一名优秀的程序员,十分优秀!