|
|
-
|
|
WPF has Presentation Framework, Presentation Core & Composition Engine (MIL). Each one sit on the top of the other in the following order 1. Composition Engine 2. Presentation Core & 3. Presentation Framework WPF uses 3D pipeline to render everything. It uses 3d hardware and gra......
|
|
-
|
|
Use case: To upload the file from client system and save the file in Server using File Stream Implementation: This can be done at the client side by using jQuery with the help of uploadify.js plugin 1. Designing the Page Drag and drop Fileupload control, hidden Fie......
|
|
-
|
|
You might be working with ASP.NET Dropdown list or normal html dropdownlist while
working with web development. In common scenarios and day to day applications we
need to get value filed ( usually ID ) and text filed of the selected item in the
drop down.
......
|
|
-
|
|
The text() method as the name suggests, returns string that contains the text contents of all matched elements. This method can be applied for both HTML and XML documents. Note : text() cannot be used for input elements. For input field text , we need to use the val() method. It is also used to ......
|
|
-
|
|
Most of the WPF classes derive from Dependency Object. All UI Elements are derived from Dependency Object. The Dependency Object class gives all the functionality of the WPF dependency property system. Dependency Object defines WPF Property System. System.Windows.DependencyObject is u......
|
|
-
|
|
Every UIElement in WPF is derived from DispatcherObject which defines a property called Dispatcher that points to the UI thread. A dispatcher is used to raise calls on another thread. Dispatcher can also be called as a class that handles thread affinity. Thread Affinity As......
|
|
-
|
|
If we are referring any other script files along with jQuery you may get conflicts in the namespace. Some times if we use jQuery with any other libraries, we may get clash between two libraries and we encounter situations like neither of the functionality works.
Important thing to keep in mind is ......
|
|
-
|
|
Prism is a Framework for developing Composite or Complex applications specific to WPF or Silverlight or Windows Phone. It uses modularity; It allows to break application into pieces can be called as Modules. It uses design patterns like MVVM, Command Patterns, Dependency Injection (DI), and Invers......
|
|
-
|
|
Introduction As all of us know if something went wrong in the Silverlight application that is consuming WCF, how much painful it is to investigate the problem. Debugging only help to certain level, as it do not always give the exact error message. It sucks and it eats considerable amount of time to......
|
|
-
|
|
What is ILDASM ? It is Intermediate Language Dissembler SDK Tool that is used to examine MSIL code and the parts of the Assembly. It comes with the installation of Visual Studio IDE. If you want to examine how your compiler is executing your code and debug your program into depth, understand the ......
|
|