|
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
|
|
|
|
|
I want to learn silver light.Can any one tell me the best approach?
|
|
|
|
|
|
In addition to the help that Mark provided, you should also make sure you have the proper tools.
You need Visual Studio 2008 as well as Expression Blend 3. EB3 is almost a must-have to quickly check your formatting, binding, and event handler settings.
|
|
|
|
|
I want to create a "Are you sure Messagbox when closing application (with never show this message again check box) using WPF and C#,
Could someone please help me out.. its very urgent.
here is the code:
WPF Code:
====================
<window x:class="Pfizer.EPRA.SmartClient.Forms.Master"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:y="clr-namespace:Pfizer.EPRA.SmartClient.Controls"
title="ePRA" windowstate="Maximized"
icon="\Images\ePRA-Icon.png"
closing<b="">="Window_Closing" >
<window.resources>
C# Code:
=======================
private void Window_Closing(object sender, System.ComponentModel.CancelEventArgs e)
{
MessageBox.Show("Are you sure pop-up when closing application ");
Here, I need a MessageBox with Yes, No buttons and A checkbox with "never show this message again"
When never show this message again check box is selected by the user, this message shold not be shown again.
}
thank you very much in advance for helping me out
|
|
|
|