resize border in webbrowser component - c#

When I edit a text in webbrowser component in C#, a border showing around it.
I want to edit the text without a border. When I click the text block twice,
the border can be seen.
I want a source code that I click once on the text, it can be edited without showing a border.
The webbrowser component is in edit mode and I click on a text block or an image. Around the image there are eight boxes in order to resize.. When I click a text block, a div tag for example, the boxes also can be seen.. and I click twice, the text is editable with a border around it.. This border is not needed..

Related

How to extend ComboBox to allow an overlayed button

I need to create a combo box with an overlayed button like the one in the Toolbox panel of Visual Studio:
I created a control derived from System.Windows.Forms.UserControl with a PictureBox onto a System.Windows.Forms.ComboBox.
The problem is that when the text is too long, it starts scrolling after the PictureBox, going under it. I tried setting the MaxLength property of the ComboBox appropriately, but in this way the user would be limited in the number of characters he could enter because the text doesn't scroll.
What can I do to achieve the desired functionality?

How to put label behind the picturebox so label can be seen under picturebox c#?

My problem is like that: I have a Windows Form Application and it contains a picture which is in a picturebox. The picture contains mostly transparent parts and picture box is also transparent. So when I change backgroundcolor property of form, picture background changes also. But I want to put many labels behind picturebox, and when I change backgroundcolor of any label, it should be seen behind the picturebox and only as color of transparent part.
If I make parent of picturebox as label, this works but it tries to place picture box into label, so if label is small, the picture is not seen.
Sorry for my grammar mistakes, thanks for your help.
You can add a label behind a picture box.
Set BackColor of PictureBox to Transparent.
Right-Click on the PictureBox and click on "Send to Back"
Right-Click on the label and click on "Bring to Front"
or at Form_Load event do
PictureBox.SendToBack();

Drawing editable text in Win2D?

Is there any easy way to implement editable text field in Win2D?
I'm trying to make a simple text tool, which would add text over image (just like in MS Paint).
By clicking inside the text's boundaries, it'd make that text ´selected`. Selected text would draw lines around it's area according to it's boundary box, and start blinking a caret in the clicked position. By clicking elsewhere, it'd unselect the text (hides possible caret, text selection and boundary box).
I was thinking about a simple solution with XAML TextBox, but I'm afraid that it doesn't support all of the effects that Win2D does (f.ex warping the text).
What would be the correct way to do it?

I have a richtextbox in C# but when I clicked toggle button underline stay clicked all the thime

this is the code in xaml about richtextbox:
The toolbar is the next, and every buttons that I added:
The view of designer placed in the next link:
I need, when I clicked de bold button, underline, italic, bullets, numbering, align (left, right, center, justify) the part of text I selected change to bold format (for example) and then, when I click enter and I write a new line, the button bold not stay clicked.
Apologize for my english.
Thanks for all!

RichTextBox text blinking

does someone know, how to make various parts of RichTextBox text to blink in .NET on Winforms?
Or maybe this is already done?(Google gave no help)
Thank you
First you need a timer. after selecting a text and click the blink button save the region of the text (startposition:endposition) to an array. With the timer change every second(for example) the color of the text in regions saved in the array. if the text is changed check if the change occured in a region and inrecrease or shrink the region. if the text is change outside a region check if the blinking text is moved and move the region also backward/foreward.

Categories

Resources