Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
################################################################################
# This .gitignore file was automatically created by Microsoft(R) Visual Studio.
################################################################################

/.vs/CustomControls/v16/.suo
/.vs/RJControls/v16/.suo
/.vs/slnx.sqlite
/.vs/VSWorkspaceState.json
/CustomControls/obj/Debug/.NETFramework,Version=v4.5.AssemblyAttributes.cs
/CustomControls/obj/Release/.NETFramework,Version=v4.5.AssemblyAttributes.cs
7 changes: 7 additions & 0 deletions CustomControls/RJControls/RJTextBox.cs
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,13 @@ public int BorderSize
}
}

[Category("RJ Code Advance")]
public bool IsPlaceHolder
{
get { return this.isPlaceholder; }
set { this.isPlaceholder = value; }
}

[Category("RJ Code Advance")]
public bool UnderlinedStyle
{
Expand Down