integrate silverlight in business application [closed] - silverlight

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
I am using business application template of silverlight(version 5).
I want to embed existing user controls & behaviours which i have downloaded from microsoft expression gallery.
Tell me the exact steps & expected changes to do so in my application
reply soon

Add the reference to your project or if you got access to the source code 'add existing items'
Add reference to in your .xaml e.g: xmlns:sdk="http://schemas.microsoft.com/winfx/2006/xaml/presentation/sdk
Use it: <sdk:DataGrid/>
alternatively
you could add vie the code behind: in xaml.cs create new instance of the object:
DownloadedUserControl control = new DownloadedUserControl;
LayoutRoot.Children.Add(control)

Related

how to convert a application which is built under WPF 3.0 to 4.5 [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
I built an application in WPF 3.0 but I want to switch to WPF 4.5 how it become possible and is there are any issues of switching?
Please guide me
Just Go to Project -> Properties Change target framework to .NET 4.5.
Visual studio will convert the project to relevant version

How do I view a report in WPF? [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
How do I view a report in WPF without a third party app?
VB.NET, Visual Studio 2010.
You can use dynamic reports without a 3rd party add-on, though if you are looking for rich features like PDF, excel export or just a good zoom or pagination engine you should use a third party solution.
Edit: My answer is a bit simplistic but without knowing the source of your data and the format you want to view it in, it is hard to be more specific.
I would start by looking into using a FlowDocument, see this MSDN Magazine article with some samples.

Publish Access database based application using VB2010 [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 11 years ago.
i want to publish access database based application using visual basic.. the thing is i do not want my database to be appeared in the installation folder so that user/client wont have access to it... It is for window application.. TQ
if you password protect your access database then they will not be able to get access to the data even if they can see it. In your code you will need to supply the password when connecting to the database.

SImple WPF Example that describes DATA Binding and Validation [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 11 years ago.
I am New to WPF.
I want Simple WPF Application Example, that have some textboxes and validation(numeric range,Email) on it
If all the Validation are true then ok button will be enable otherwise disable
Detail Example will be Appreciated
Thank You
Please see WPF: simple TextBox data binding Do google before posting questions.There are lots of examples and tutorials out there
also
WPF Basic Data Binding FAQ

Custom Silverlight splash screen [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 9 years ago.
Has anyone created a custom Silverlight Splash screen to replace the blue balls circular progress?
Does anyone have a sample or the best way to do this?
Take a look at this how to:-
How to: Define a Simple Silverlight Splash Screen
This looks quite useful too
Pro Silverlight 2 in C# 2008 (Google Book preview)
Have a look at this project on CodePlex link text

Resources