Advanced Forum Search Results
-
I won't know the names of the attributes. I am building a dynamic xml file at runtime. Is there any way to loop through the attributes in this linq query?
-
I need a linq query that will select all nodes where any attribute value = true. Here is my xml.
<Root>
<UserRole CanViewUsers="true" CanEditUsers="false>Program Host</UserRole>
<UserRole CanViewUsers="false" CanEditUsers="false>Program ...
-
Do you know if its possible to do what I am trying. I can't create a class based on the xml cause it's a dynamic data.
-
How can I do this from codebehind?
-
I have the following XElement document and I am trying to bind the elements and attributes to a datagrid from codebehind. I need to do it from codebehind so I can build my datagrid dynamically. The element is binding but the attributes are not binding correctly. Does anyone know how to get the attributes to ...
-
Does anyone know if its possible to have angled column headers in a datagrid.
Thanks.
Nathan
-
Do you have an example of this? I cannot get it working.
-
Is this possible. Can I have a property marked as an external association also be a collection? If not, what would be a good workaround. Here is an example.
public partial class UserInformation{
[External][Association("UserProxyOrganizations", "ProxyOrganizationIDs", "ID", ...
-
I have the following code but can't figure out how to get it working. Is this even possible. I keep freezing my browser with this code. <ComboBox x:Name="cbTest3">
...
-
Well, I figured part of it out. I was able to create two DomainDataSources and add a reference in code behind. Now I am wondering if the reference can be set in xaml. Here is my code so far.
XAML
<ria:DomainDataSource ...