Posts by StanleyIPC • 138 points
8 posts
-
2
votes1
answer135
viewsA: Message Warning CS0108!
However, the new keyword was not used Just add the modifier new (more information about the new) new void Excluir(Validador validador);…
c#answered StanleyIPC 138 -
0
votes1
answer39
viewsA: Problems with hotkey to open and hide the interface using "Application.Current" (C# WPF)
Come on William, What happens is that you are misinterpreting Static class Application and consequently property Current. Application.Current.Window1.Hide(); This usage is wrong. There is no…
-
1
votes1
answer160
viewsA: How to resize the font size - WPF?
You can use a Viewbox to auto resize the font size. Example <Viewbox> <TextBox Text="TESTE"/> </Viewbox>…
-
1
votes2
answers130
viewsA: The Binding inside a Compositecollection does not work
First of all, one of the demands of binding is the property referenced to be public. https://docs.microsoft.com/en-us/dotnet/framework/wpf/data/binding-sources-overview The properties you use as…
-
1
votes2
answers413
viewsQ: Is it recommended to use the TFS for those who are starting and have a simple project?
Recently concluded my first project in C#, it is a tool that will help the administrator of the company where I work. At the moment, the updates are manual and in search of finding a solution for…
team-foundation-serverasked StanleyIPC 138 -
1
votes1
answer331
viewsA: WPF Checkbox Combobox direct click on button after selection
First, what happens is that Combobox has been implemented so that when Dropdown is open it captures the mouse. This is native to Combobox and means that: Of Capture and Uncapture the mouse: When an…
-
1
votes1
answer88
viewsA: Pass sequence of steps (methods) to window (wpf)
Next Paul, what I understand is that you want a reusable screen, I will try to give you a light to continue. First, let me take your doubt below: I wanted a north to know if the Backgroundworker…
-
2
votes2
answers67
viewsA: Save an image by identifying it from Frameworkelement
To help you reproduce here your problem and made a summary of what I understood. SUMMARY: What seems to happen is that the class RenderTargetBitmap, even with the "Render" method containing the…