Posts by Paulo Freitas • 125 points
8 posts
-
3
votes1
answer85
viewsQ: Keyboard shortcuts in Ribbonwindow
Hello, I’m developing an application using WPF and window based on Ribbonwindow of Ribboncontrolslibrary and I’m having problems with the Gesture of "Ctrl+0", only with the "Ctrl+Numpad0" I was able…
-
1
votes1
answer51
viewsA: Adding Radiobutton to the Datagrid in Runtime
I managed to solve this problem as follows. XAML: <Window.Resources> <DataTemplate x:Key="rbMacros"> <RadioButton Content="{Binding macro}" GroupName="{Binding groupName}"/>…
-
2
votes1
answer51
viewsQ: Adding Radiobutton to the Datagrid in Runtime
At a certain point in the software, I need to populate a DataGrid in Runtime. I managed to perform this operation partially. My problem is that even if I insert RadioButton.Content, it simply does…
-
3
votes1
answer88
viewsQ: Negative return from Array.Binarysearch()
I needed to make a comparison of the kind of methods normally created as inList or something like that. When searching the Microsoft documentation, I found the Array.BinarySearch(T[], T). I…
-
0
votes1
answer32
viewsA: Problems with Ribboncombobox
Solution: To set the information it was only necessary to create the following XAML code: <r:RibbonComboBox x:Name="rcbFontFamily" SelectionBoxWidth="160" IsEditable="True">…
-
0
votes1
answer399
viewsA: Communication between Forms
I found the answer in a post on own stackoverflow.with, follows the link https://stackoverflow.com/questions/7901007/sending-event-between-2-wpf-windows I accept suggestions for other solutions.…
-
2
votes1
answer399
viewsQ: Communication between Forms
I have a form that has a text editing component(RichTextBox) and create a search form (Find/famous CTRL+F). My question is how do I make one form "chat" with the other. For example, type something…
-
1
votes1
answer32
viewsQ: Problems with Ribboncombobox
Good afternoon, we are developing a text editing tool. In it we are using the menus with the "Ribboncontrolslibrary", and until the moment everything is right. When I decided to use Ribboncombobox I…