我想動態生成xmlns屬性。生成動態xmlns
我想在XSL生成此:
<常見:MainPageBase的xmlns:通用= 「CLR-名稱空間:ThisPartIsDynamic;裝配= ThisPartIsDynamic」> < /常用:MainPageBase>
我該如何在XSL中做到這一點?
謝謝, 亞歷克斯
更新:
更確切地說,這裏是我需要生成。我希望能夠與變量發生變化的部分是「THISPARTISDYNAMIC」:
<Common:MainPageBase
xmlns:Common="clr-namespace:THISPARTISDYNAMIC;assembly=THISPARTISDYNAMIC"
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"
xmlns:df="clr-namespace:System.Windows.Controls;assembly=System.Windows.Controls.Data.DataForm.Toolkit"
xmlns:controlsToolkit="clr-namespace:System.Windows.Controls;assembly=System.Windows.Controls.Toolkit"
xmlns:basics="clr-namespace:System.Windows.Controls;assembly=System.Windows.Controls"
xmlns:data="clr-namespace:System.Windows.Controls;assembly=System.Windows.Controls.Data"
xmlns:uc="clr-namespace:THISPARTISDYNAMIC"
mc:Ignorable="d" d:DesignWidth="640" d:DesignHeight="480"
></Common:MainPageBase>
任何想法?
好問題(+1)。查看我的答案獲得完整的解決方案。 :) – 2010-05-18 20:54:08