https://github.com/parvathy-vijayan/basic-window-form-body-tag-formatter
Body Tag formatter
https://github.com/parvathy-vijayan/basic-window-form-body-tag-formatter
body-tag-formatter csharp windows-form-application windows-forms windows-forms-csharp
Last synced: 2 months ago
JSON representation
Body Tag formatter
- Host: GitHub
- URL: https://github.com/parvathy-vijayan/basic-window-form-body-tag-formatter
- Owner: PARVATHY-VIJAYAN
- Created: 2023-06-26T18:25:08.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2023-06-26T18:28:45.000Z (about 3 years ago)
- Last Synced: 2025-03-29T19:09:52.235Z (over 1 year ago)
- Topics: body-tag-formatter, csharp, windows-form-application, windows-forms, windows-forms-csharp
- Language: C#
- Homepage:
- Size: 68.4 KB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# basic-window-form-body-tag-formatter
Create a Windows form application to create an HTML line of Body tag formatter. It must contain the following functionalities:
- When the user clicks a radio button from the Body Attributes group box, we need to display its color on the Preview panel.
- When a particular button is clicked, retrieve the color of its font from the Body text box.
- We also need to update the corresponding text box in the Body Attributes group box.
- You should be capable of copying the body tag text to the clipboard when you click over the ‘copy’ button. You should be able to Paste the HTML line anywhere you like.
- Hint: To copy the contents of a textbox use textBox1. Copy() or get text first and then set clipboard value: Clipboard. SetText(txtClipboard.)