This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1. Open VS Code | |
2. Press Ctrl + Ship + P | |
3. Type "settings" and choose "Preference : Open settings (UI)" | |
4. Search the following settings : "word wrap" | |
5. Set "Editor: Word Wrap" to "ON" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Public Class BindingProxy | |
Inherits Freezable | |
Protected Overrides Function CreateInstanceCore() As Freezable | |
Return New BindingProxy() | |
End Function | |
Public Property Data As Object | |
Get | |
Return DirectCast(GetValue(DataProperty), Object) |