|
Why would you 1 vote someone for stating the obvious ? It's not his fault that you're stupid.
Christian Graus
Driven to the arms of OSX by Vista.
Read my blog to find out how I've worked around bugs in Microsoft tools and frameworks.
|
|
|
|
|
I didn't vote it 1, you can open your eyes and see my vote right now.
I think you are more stupid than me , because you judge about something that you don't know anything about it.
|
|
|
|
|
Also, to get you started, there is sample templates
for Menu and MenuItem in the documentation:
ControlTemplate Examples[^]
Mark Salsbery
Microsoft MVP - Visual C++
|
|
|
|
|
Hey guys,
I'm developing a kind of website content management system. Users can drop 'blocks' of content on a page and some blocks are silverlight applications (for example picturebooks). I want users to be able to 'skin' the silverlight application like a css stylesheet would do that for a webpage. I was thinking of defining properties for objects used in the silverlight application (for example a button and an image) and let the user decide the values of the properties.
Is there a built in feature in Silverlight which allows me to create such functionality or do I have to write code for each and every property in silverlight which means a lot (A LOT) of coding...
Thanks!
|
|
|
|
|
You could merged dictionaries to provide alternate "skins" for controls.
Allowing the user to change them will require some coding definitely, because
you'll need to build dictionaries at runtime and probably need a way to save
the user's preferences.
The ImplicitStyleManager can help for applying styles to controls at
runtime so you don't have to do that part manually.
Implicit Style Manager and Merged Dictionaries[^]
Mark Salsbery
Microsoft MVP - Visual C++
|
|
|
|
|
The implicit style manager is probably the one I was looking for.
Thanks!!
|
|
|
|
|
I see the following error while connecting to a wcf service through my silverlight application.
An error occurred while trying to make a request to URI 'http://localhost:3046/Service1.svc'. This could be due to attempting to access a service in a cross-domain way without a proper cross-domain policy in place, or a policy that is unsuitable for SOAP services. You may need to contact the owner of the service to publish a cross-domain policy file and to ensure it allows SOAP-related HTTP headers to be sent. This error may also be caused by using internal types in the web service proxy without using the InternalsVisibleToAttribute attribute. Please see the inner exception for more details.
Tauseef A Khan
MCP Dotnet framework 2.0.
|
|
|
|
|
|
wcf service is in the solution where silverlight application is.
i m hosting silverlight app in a web application in the same solution.
Tauseef A Khan
MCP Dotnet framework 2.0.
|
|
|
|
|
Tauseef A wrote: wcf service is in the solution where silverlight application is.
i m hosting silverlight app in a web application in the same solution.
The project/solution has no relevance here.
I mean the web hosts...WcfSvcHost...IIS....Self Hosting?
Mark Salsbery
Microsoft MVP - Visual C++
|
|
|
|
|
its wcfsvchost i think.
Tauseef A Khan
MCP Dotnet framework 2.0.
|
|
|
|
|
Then you'll definitely want to study the information
at the links I provided to understand the cross-domain
issue and how to deal with it.
Mark Salsbery
Microsoft MVP - Visual C++
|
|
|
|
|
thanks.
Tauseef A Khan
MCP Dotnet framework 2.0.
|
|
|
|
|
The WcfSvcHost is for testing/debugging.
You'll probably want to consider how it will work
when the service is actually deployed. I find hosting
on IIS the easiest and most flexible.
Mark Salsbery
Microsoft MVP - Visual C++
|
|
|
|
|
Hi All,
I have to take the inputs as multiple entries in WPF data grid like this.
----------------------------------------------------------------------------------------------------------------------
| Select Option | Name | Age |Country | Action | Action |
----------------------------------------------------------------------------------------------------------------------
| option button | textbox | textbox | combobox | linkbutton edit/update row | linkbutton edit row |
------------------------------------------------------------------------------------------------------------
ADD Button
-----------------------------------------------
--> By clicking the ADD button i have to create a new row with new controls as in 2nd row.
--> By clicking the DELETE button in the 5th cell the corresponding row should be deleted.
--> By clicking the EDIT button in the 4th cell the corresponding row should be UPDATED(if user want)
Can I achieve this by taking WPF Data grid (WPF tool Kit Latest Build ), and how?
Or is there any other ways to achieve this?
Suggest me some URLs, Samples..etc
Many Many Thanks in Advance.
Eswara G
|
|
|
|
|
If the itemssource for the datagrid is an observablecollection,
generally all you need to do is add or remove items from the
collection and the datagrid will update appropriately.
How are you providing data to the datagrid?
Mark Salsbery
Microsoft MVP - Visual C++
|
|
|
|
|
Hi Mark Salsbery,
Thanks for Quick Reply,
Right now am providing data by using DataSet like
dgXXX.ItemsSource= dataSetXX.Tables[0].DefaultView;
Case 1: How to convert Data set to observablecollection..
case 2. i have some limitations, a) I am retrieving data as DataSet from Oracle11g by using Ref_cursor.
Now ... Please suggest me a way to approach.
Thanks
Eswara G
|
|
|
|
|
You should be able to use the DataTable as-is if
I remember right.
dataSetXX.Tables[0].Rows is the collection you can add/delete items
from (using DataTable.NewRow() to create new rows to insert).
dgXXX.SelectedItem should give you the DataRow selected in the datagrid.
Here's some more info: Windows Presentation Foundation Data Binding: Part 2[^]
Mark Salsbery
Microsoft MVP - Visual C++
|
|
|
|
|
Thank you Mark..
I tried this way..But am unable complete my requirement...
Can you provide me some sample code or Application or URL..
Regards,
Eswara G
|
|
|
|
|
Eswa wrote: Can you provide me some sample code or Application or URL..
Here's one example (see first reply): Binding a WPF listview to a DataTable[^]
An article with a little background in it: How do I bind to ADO.NET?[^]
If you can show a simple example of what you tried that
didn't work then maybe I can see what's going on...
Mark Salsbery
Microsoft MVP - Visual C++
|
|
|
|
|
Does anybody know of a working Weather Web Service that I can use in my WPF app? I've tried numerous ones but none seem to be available when I try to add a reference to it.
|
|
|
|
|
|
Thanks I'll try them out.
I've been trying the GlobalWeather service from WebServiceX, and I get it working to display the following in a textbox:
<?xml version="1.0" encoding="utf-16"?><CurrentWeather>
<Location>Port Elizabeth, Port E Apt, South Africa (FAPE) 33-59S 025-36E 0M</Location>
<Time>Nov 13, 2009 - 09:00 AM EST / 2009.11.13 1400 UTC</Time>
<SkyConditions> mostly cloudy</SkyConditions>
<Temperature> 68 F (20 C)</Temperature>
<DewPoint> 55 F (13 C)</DewPoint>
<RelativeHumidity> 64%</RelativeHumidity>
<Pressure> 29.91 in. Hg (1013 hPa)</Pressure>
<Status>Success</Status></CurrentWeather>
Does all web services return information in this way or not? I'm quite new to them. If yes, how can I show this data in a more understandable format e.g. in textboxes?
|
|
|
|
|
Hi,
I have intel core 2 duo processor. I have two applications (wpf desktop based applications). I want to run 1st application on 1st core and 2nd application on 2nd core.
Thanks & Best Regards,
Divyesh Chapaneri
|
|
|
|
|
Have a look at the function SetProcessAffinityMask.
Greetings
Covean
|
|
|
|