Advanced Forum Search Results
-
Hi,
I think you need to do some settings to solve this error. Go to your webservice propoerties and click on web. In the server tab select "Use IIS webserver". Set project url and create virtual directory. I hope this helps. Let me know if you have difficulty.
Thanks
-
Yes. I have so much data coming from Database. I have many variables. all variables I want to bind in xaml itself instead of declaring local variable and binding them. Please help.
Thanks
-
Hi. I Have servicereference in my project. ex: serviceref1. I want to declare the object for this service reference in XAML. Same like we do it for any dll. How can I do that? Please help.
Thanks
-
Hi Thanks for your reply. I couldn't understand this code. Could you please explain this?. What is this MySoftClass=projectName meaning. and there is not intellisense for assembly. How can I get this Assembly abject?
Thanks
-
Hi, I have 3 XAML files in my project. When I click on button I want to show XAML file as model dialog. How can I do that. Any help would be appreciated.
Thanks
-
Hi, How can I add dynamic rows to Grid(Not DataGrid)? please help.
Thanks
-
Hi I need good ComboBox control. Can anybody help me to get it.
Thanks
-
Add LoadingRowDetails event in your code and get the image control. See below to add event dynamically for image in loadrowdetails event handler. Image image = e.DetailsElement.FindName("Administration_Image") as Image;/if (image != null)
{image.MouseLeftButtonDown += new MouseButtonEventHandler(image_MouseLeftButtonDown); ...
-
Thanks for reply. I have the following xaml in cs file. StringBuilder CellTemp = new StringBuilder();
CellTemp.Append("<DataTemplate ");CellTemp.Append("xmlns='http://schemas.microsoft.com/winfx/2006/xaml/presentation' ");
CellTemp.Append("xmlns:x='http://schemas.microsoft.com/winfx/2006/xaml' ...
-
Thanks for reply. But I am not using another xaml file. I have written xaml with stringbuilder and appnded. I have canvas and image controls in it.How can I add eventhandler for button?. Please help.