English 中文(简体)
在 SL 应用程序中出现奇怪的错误... 由于浏览器问题吗?
原标题:Strange rendering error in SL app... out of browser issue?

我已经在SL5 应用程序上工作了几天。 我大多数在对应用程序进行格式化时都使用了硬编码的假数据采集。 一切都很好, 但现在我想把它连接到由我的视图模型生成的动态数据收集中( 使用数据服务技术, 您在那里可以设计时间和模型; 真实数据取决于 ISIndesignTool 属性 ) 。

我清除了硬编码数据的控制范围, 并将其绑在查看模型中的收藏中。 当我在调试模式下运行时, 我看到一个未处理的例外被扔在 App.sxaml.cs 中。 例外并不确切地说问题是什么( 它只是说“ 价值不属于预期范围 ”, 但当我看到发件人时, 我发现来自MainWindow的下列信息( 我的应用程序只有一个视图 ) : “ 退出浏览器的特定设置不会影响浏览器中的应用程序 。 ”

此外,当我试图在 VS 的设计师中查看主窗口时, 它不会产生错误, 反而会显示错误( 设计师的例外没有我的命名空间, 只是关于控件 & amp; UIElements ) 。

我有点不知该如何解决这个难题。在建立应用程序时,我没有为外部浏览者设置任何东西,而且由于它与模拟数据收集工作有关,为什么它突然有这个问题(好像我使用一个外部浏览者的财产,在我将数据绑到视图之前,它就会显示出来)。

提示/指点器?

问题回答

(对不起我的坏英语)

我不确定发生了什么,但我在浏览器上运行时试图访问某些只有 OOB 可用的特定属性时, 看到了错误 < code> " out of- browser except... ... 。 解决方案是测试在使用该属性前是否运行 Ooob :

if (Application.Current.IsRunningOutOfBrowser)
{
    Application.Current.MainWindow.WindowState = WindowState.Maximized;
}

另一个问题可能无关紧要 — — 有时可能很难调试 — — 帮助我的一件事是打开另一个 VS 实例并将其附加到您看到问题的地方。 有了这个设置, 转到您有问题的 View 上, 并更改为“ 设计视图 ” — — 留意所附 VS 的输出窗口, 看看是否有有意义的例外 。

我有一个类似的问题。

我将 Textbox ( Listbox ( raddPanelBar )) 添加到某类 里,并添加了 ( Listbox )

HorizontalScrollBar可视性= Textbox 。似乎文本框在显示滚动条和不显示滚动条时有问题。添加

ScrollViewer.HorizontalScrollBar可视性=“残疾” 致列表框的“坚固>( 因此,完全没有OOB发行 ) 。

我并不完全确定错误是什么,但是它完全没有真实到 OOB 。 我使用一种数据服务方法(在设计时我用程序构建真实数据,而不是表达式混合样本数据,但是如果不是设计工具,它使用 REST 服务 ) 。 我开始在我的动态数据中让很多东西失效,并慢慢地将其添加到后面。我的假数据生成过程在某处把事情弄糟,但是 SL 认为这是一个 OOOB 问题。





相关问题
Silverlight Rich text box control

Our team decided that we need our own custom Rich text box control for Silverlight app we are developing. We looked at existing controls mentioned at A good rich text control for Silverlight but ...

Silverlight ImageBrush not rendering (with Bing Map Control)

I m trying to add an image to a Pushpin instance from the Silverlight Bing Map Control, but I can t seem to get it to render (the pushpin renders fine). This is probably a general WPF question rather ...

Silverlight OpenFileDialog DoEvents equivalent

I m processing large files after they are selected by the user. My code looks like the following: if (FileDialog.ShowDialog() == true) { // process really big file } This freezes up the UI so ...

list of controls with templates in silverlight

Does anyone know where to find a list of controls that you can set the template on in Silverlight? I ve wasted several hours now trying to create control templates only to find that the control doesn ...

Silverlight, Updating the UI during processing

I have a simple silverlight multifile upload application, and i want to provide the user with some feedback, right now its only in a test phase and i dont have the webservice. Somehow i cant get the ...

Silverlight 3 - FindName returns null

This looks a bug to me.. Using Silverlight 3 and i have a user control defined in XAML and trying to access the object during runtime returns a null. <Grid> <common:CommonGridEditPanel x:...

silverlight 3 collection binding

Someone please help me understand why this binding does not work... I have a class called SelectionManager with a property called dates which is populated by a WCF service. The property is an ...