English 中文(简体)
包括ASCX用户控制档案中的银光XAML内容
原标题:Including Silverlight XAML content in ASCX User Control files problem

我在使银星认识到银灯工具包的名称方面遇到许多麻烦,因为我是在协会撰写XAML代码。 用户控制网(*.ascx)文档。

我在这里进行了“谷歌”的搜索(打了吗? 可能的话),但没有为我工作。

我相信,这可以做些什么,我看到它以前的工作。

在撰写XAML内容(.ascx)文件后,我们将这些内容寄给一份(xap)银灯可执行文件,该文档通过XamlReader

这是ASCX档案的主编:

<%@ Control Language="C#" AutoEventWireup="false" CodeBehind="TargetChartByVisits2.ascx.cs" Inherits="Mynamespace.TargetChartByVisits2" %>
<UserControl
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:controls="clr-namespace:System.Windows.Controls;assembly=System.Windows.Controls.Toolkit"
xmlns:datavis="clr-namespace:System.Windows.Controls.DataVisualization;assembly=System.Windows.Controls.DataVisualization.Toolkit"
xmlns:charting="clr-namespace:System.Windows.Controls.DataVisualization.Charting;assembly=System.Windows.Controls.DataVisualization.Toolkit"
xmlns:chartingprimitives="clr-namespace:System.Windows.Controls.DataVisualization.Charting.Primitives;assembly=System.Windows.Controls.DataVisualization.Toolkit"
xmlns:data="clr-namespace:MyNamespace.MyCharts;assembly=MyNamespace.MyCharts"
Width="350" Height="400">

我试图做的是绘制银灯工具包的图表,我有这部XAML法协助数据约束:

<controls:ObjectCollection x:Key="SeriesData">
    <asp:Repeater ID="Repeater1" DataSource="<%# vwMain %>" runat="server">
        <ItemTemplate>
            <data:ChartDataElement MeasurementDate="<%# HttpUtility.HtmlEncode(Sql.ToString(Eval("MeasurementDate"))) %>" VisitReading="<%# HttpUtility.HtmlEncode(Sql.ToString(Eval("VisitAmount"))) %>" VisitTarget="<%# HttpUtility.HtmlEncode(Sql.ToString(Eval("Visit_TargetAmount"))) %>" />
        </ItemTemplate>
    </asp:Repeater>
</controls:ObjectCollection>

我发现的一个错误是,cl-名称空间:System.Windows.Controls;assembly=System.Windows.Controls.Toolkit是一个不为人知的名称空间,尽管我安装了工具包,样本运行良好,我也从这个大会(Controls)中添加了字句。

C:Program Files (x86)Microsoft SDKsSilverlightv4.0ToolkitApr10Bin

我感谢我使用VS2010。

最佳回答

我怀疑你会发现这一错误,因为你的XAP文件没有包括成套数据单。 在你为制作XAP而汇编的项目中,你将需要在随后下载的Xaml可能提到的所有车道上添加提及。

即使Xaml和《刑法》在Xap项目中发现,XamlReader没有使用这些lls,而XamlReader则用于在Xap项目中提供所有下载的Xaml参考材料。

有一些替代办法,但是如果你能够预测预期的参考线索会更好,那么这些办法就更加复杂。

你们的印象是,银灯应用应能在客户机器上安装任何银灯SDK。 情况并非如此,只有编辑MSBuild或视觉演播室才有兴趣使用机器上安装的设备。 滚动银灯的应用只能利用Xap中包含的内容或可以下载的内容,只能使用安装在客户上的lls。

问题回答

如果你用银灯在 as、 as或html页上,规则是相同的。 银灯是一种浏览器粉碎物,因此,内容必须包含一个超文本标:

<object width="300" height="300"
    data="data:application/x-silverlight-2," 
    type="application/x-silverlight-2" >
    <param name="source" value="SilverlightApplication1.xap"/>
</object>

这就是你需要放在你身上的代号,而不是XAML。

See How to: Add Silverlight to a Web Page by Using HTML for more information.

银灯可以两种方式进行:

(1) 只使用XAML和Java文。 这部法律没有管理,也没有用户委员会。 在此情况下,你可以将XAML大致如此(我不得不研究这一无政府论的辛奈,因为它现在很少使用过。

2)银星2+灯,使用管理代码。 在这种情况下,你必须使用<代码><object> tag。 因此,你会把XAML贴在像这种直接一样的ASCX档案中,而你会把XAML放在银星应用或银星级图书馆中,制作一个Xap文档,并用<代码><object>标签从ASCX中标出。

您能否澄清你试图做些什么? 似乎像你想要第2号(管理代码)一样,但如果你确实想做银灯1作风,请对此作出答复,我可以确切地更新我的答案。





相关问题
Manually implementing high performance algorithms in .NET

As a learning experience I recently tried implementing Quicksort with 3 way partitioning in C#. Apart from needing to add an extra range check on the left/right variables before the recursive call, ...

Anyone feel like passing it forward?

I m the only developer in my company, and am getting along well as an autodidact, but I know I m missing out on the education one gets from working with and having code reviewed by more senior devs. ...

How do I compare two decimals to 10 decimal places?

I m using decimal type (.net), and I want to see if two numbers are equal. But I only want to be accurate to 10 decimal places. For example take these three numbers. I want them all to be equal. 0....

Exception practices when creating a SynchronizationContext?

I m creating an STA version of the SynchronizationContext for use in Windows Workflow 4.0. I m wondering what to do about exceptions when Post-ing callbacks. The SynchronizationContext can be used ...

Show running instance in single instance application

I am building an application with C#. I managed to turn this into a single instance application by checking if the same process is already running. Process[] pname = Process.GetProcessesByName("...

How to combine DataTrigger and EventTrigger?

NOTE I have asked the related question (with an accepted answer): How to combine DataTrigger and Trigger? I think I need to combine an EventTrigger and a DataTrigger to achieve what I m after: when ...

热门标签