Posts by Dênis Azevedo • 69 points
6 posts
-
0
votes0
answers2051
viewsQ: Custom userControl events still running in the code in the visual studio, is that a bug?
I am developing in WPF, and while doing a custom userControl, I had a surprise, when I went to use the Events "Routedeventhandler Loaded" and "Routedeventhandler Unloaded" of…
-
1
votes1
answer367
viewsQ: Column break in table
I need to create an item table that comes from an XSLT foreach to HTML, every four lines break into a new column, follows an example: example of code that does not break by column <table>…
-
0
votes2
answers441
viewsQ: How to disable double-click the header of a Datagrid?
Double-click method on the grid: private void grid_MouseDoubleClick(object sender, MouseButtonEventArgs e) { if (e.LeftButton == MouseButtonState.Pressed && //Verifica clique com o esquerdo…
-
0
votes1
answer177
viewsQ: How to pass the name of a wpf window as parameter
I use a userControl customized to show a Data Grid and when I double-click some line, I call a registration window, which is waiting to send the ID of the line selected as parameter, wanted to…
-
4
votes1
answer1123
viewsQ: What is the function called to drag the window to the corners of the screen?
How is called the function of clicking and dragging the title bar of the window to the corners of the screen, and they auto adjust? Example: when you drag the window in the right corner of the…
-
1
votes2
answers778
viewsQ: How do I change the content of a Usercontrol using a button in another Usercontrol?
A window with a grid, and with two content areas, "Contentarea" and "Contentmenu". "Contentarea" starts blank, "Contentmenu" starts with the Navigation buttons, which make "Contentarea" change its…