- propfull = Creates full property.
- private int myVar;
- public int MyProperty
- {
- get { return myVar; }
- set { myVar = value; }
- }
- Prop = Creates half property.
- public int MyProperty { get; set; }
- Propdp = Creates dependency property.
- public int MyProperty
- {
- get { return (int)GetValue(MyPropertyProperty); }
- set { SetValue(MyPropertyProperty, value); }
- }
- // Using a DependencyProperty as the backing store for MyProperty. This enables animation, styling, binding, etc...
- public static readonly DependencyProperty MyPropertyProperty =
- DependencyProperty.Register("MyProperty", typeof(int),typeof(ownerclass), new PropertyMetadata(0));
- Ctrl + .(Dot) – Resolves namespaces, generates method stub, renames every reference.
- Shift + F12 = Gives all references of item.
- Ctrl + K, C = Comments code
- Ctrl +K, U = Uncomments code.
- Ctrl +K, K = Creates bookmark.
- Ctrl +K, P = Navigate to previous bookmark.
- Ctrl +K, N = Navigate to next bookmark.
- Ctrl +K, L = Remove all bookmarks.
- Ctrl +K, S = Surround code with try catch etc.
- Shift + F9 = Quick watch.
- F9 = Insert or remove breakpoint.
- Ctrl + shift + F9 = Delete all breakpoints.
- F7- Go to code behind.
- Shift + F7 = Go to designer.
- F5 = Start debugging.
- Shift + F5 = stop debugging.
Join the conversation! Your thoughts help the community grow.
Sign in to leave a comment
It is the same account you read, post and publish with — and you will come straight back to this page.

Jaco ZwartsPosted Jan 25, 2016, 2:17 PM
Nice, thank you for sharing
Shubham KumarPosted Jan 21, 2016, 3:56 AM
thnx for quick solution