shaharyr

Stories kicked by shaharyr

Pay Attention to the Foreach Implicit Casting (dev102.com)

submitted by shaharyrshaharyr(4325) 2 years, 9 months ago

In order to reduce an explicit conversion effort using the foreach statement, the C# developers decided to do an automatic conversion for us. We must pay attention to it... read more...

add a comment |category: |Views: 408

tags: another

Changing Brush Brightness in WPF/Silverlight (dev102.com)

submitted by talisharon10talisharon10(800) 2 years, 10 months ago

Changing Brush Brightness in WPF/Silverlight from code in runtime read more...

2 comments |category: |Views: 220

tags: another

Creating A RESTful API With WCF (dev102.com)

submitted by razamitrazamit(4566) 2 years, 10 months ago

Representational state transfer (REST) is a style of software architecture for distributed hypermedia systems such as the World Wide Web. As such, it is not just a method for building "web services." The terms "representational state transfer" and "REST" were introduced in 2000 in the doctoral dissertation of Roy Fielding,[1] one of the principal authors of the Hypertext Transfer Protocol (HTTP) specification. read more...

add a comment |category: |Views: 372

tags: another

Formatting Your WPF Data – String.Format Is In the House! (dev102.com)

submitted by razamitrazamit(4566) 2 years, 11 months ago

How to format your Binded Data read more...

add a comment |category: |Views: 312

tags: another

Creating Gapped and Bulleted Shapes in WPF/Silverlight (dev102.com)

submitted by razamitrazamit(4566) 3 years ago

How to create a shape with bullets on the joints of it’s segments read more...

add a comment |category: |Views: 216

tags: another

Parameter count mismatch Error (dev102.com)

submitted by shaharyrshaharyr(4325) 3 years ago

Yesterday, I spent a whole day chasing a very weird and strange error - I was getting an exception at the main method. The error description was: “Parameters count mismatch“. read more...

add a comment |category: |Views: 358

tags: another

4 Grea Tips for Custom WPF Controls Developers (dev102.com)

submitted by razamitrazamit(4566) 3 years ago

4 great tips for WPF Custom control designers read more...

add a comment |category: |Views: 296

tags: another

How to Create A JQuery Plugin (dev102.com)

submitted by talisharon10talisharon10(800) 3 years ago

A small tutorial about creating JQuery Plugins read more...

add a comment |category: |Views: 195

tags: another

Another List of 5 Great and Useful Visual Studio Shortcuts (dev102.com)

submitted by razamitrazamit(4566) 3 years, 1 month ago

a while back we had 2 great posts and one page about visual studio shortcuts. The first one had a list of 10 Visual Studio Shortcuts and the second one had 11 Visual Studio Shortcuts. We also have a Visual Studio CheatSheet with all the Keyboard shortcuts Visual Studio has. read more...

add a comment |category: |Views: 601

tags: another

Creating A Tabbed Menu Control For ASP.NET MVC (dev102.com)

submitted by razamitrazamit(4566) 3 years, 1 month ago

Tab menus are a fairly common thing that I use in a lot of my applications. I like tabs because they help break up large chunks of, usually, related information. read more...

add a comment |category: |Views: 693

tags: another

DebuggerDisplay and DebuggerBrowsable – Two Debugger Attributes to kno(dev102.com)

submitted by razamitrazamit(4566) 3 years, 1 month ago

two very useful debugger attributes any programmer should know read more...

add a comment |category: |Views: 259

tags: another

Don’t Use a WPF Control in Windows.Resource (dev102.com)

submitted by razamitrazamit(4566) 3 years, 1 month ago

Whong usage of Windows.Resource read more...

add a comment |category: |Views: 152

tags: another

Creating an Ajax Login Form With jQuery (dev102.com)

submitted by razamitrazamit(4566) 3 years, 2 months ago

In this post I want to show you how to use jQuery to create an AJAX login screen. I am going to use an ASP.NET MVC application for this demonstration read more...

add a comment |category: |Views: 522

tags: another

Working With ASP.Net MVC Part 5 - Views (dev102.com)

submitted by razamitrazamit(4566) 3 years, 2 months ago

Well we’ve arrived at the last part of our series on ASP.NET MVC. In this post we’ll be looking at Views, ViewData, and HTML Helpers. We’ll be discussing how to call Views from Controllers and how to use HTML Helpers to create your markup. read more...

add a comment |category: |Views: 228

tags: another

Property, Dependency Property and Threading(dev102.com)

submitted by razamitrazamit(4566) 3 years, 2 months ago

are Property, Dependency Property thread safe? read more...

add a comment |category: |Views: 26

tags: another

C# Design Patterns - The Facade Pattern(geekdaily.net)

submitted by justinbezansonjustinbezanson(1555) 3 years, 2 months ago

In our city dog registration application lets assume there are a few things that need to be done when a new dog is registered. First the new dog and it’s owners must be entered into the system. Next the registration fee must be processed. Finally, we want the system to send the owners the welcome email. This is a very simple example but this action requires 3 separate systems to do something in order to complete this one task of registering a new dog. read more...

1 comment |category: |Views: 675

tags: another