Right but even after doing this i will get something like
<sys:String afc:Key="check2_Label" xmlns:sys="somevalue" xmlns:afc="somevalue">check 2 label en</sys:String>
but i want
<sys:String x:Key="check2_Label">check 2 label en</sys:String>
i dont want xmlns displayed as it is already...
but this will give me
<sys:String afc:Key="check2_Label" xmlns:sys="somevalue" xmlns:afc="somevalue">check 2 label en</sys:String>
whereas i want it
<sys:String x:Key="check2_Label">check 2 label en</sys:String>
where sys and x are the xmlns mentioned in the top level already
Hi All,
I am trying to create a XML Element in C# of the form
<sys:String x:Key="MyGroup2_SuperTip">Group 2 supertip en</sys:String>
where
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:sys="clr-namespace:System;assembly=mscorlib"
are specified in the header already.
But when...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.