I have the following method that has the OnKeyDownHandler event and I can only send it two parameters and I want to send it a list as well (FileInformation FilesList)
private void OnKeyDownHandler(object sender, FileInformation FilesList, KeyE...
I am new to UWP and would like to know if there is any way to pass information from one Date Picker to another new one, what I have in XAML is
<StackPanel Name = "ContenedorElementos">
<CalendarDatePicker Name="FechaEntr" Margin="...
I have a DataGrid with a DataGridTemplateColumn , a other columns that are loaded dynamically, I'm trying to change the background when the property Eliminado is in true , but it has not worked for me way.
The...
I am using the Picker control to show answers to a question, the problem is when the questions are very long they are shown in the following way.
Open some way to increase the size of the picker so that the complete answers are shown?...
Good morning,
I added the Command property to a MenuItem but it does not work
The code of the xaml is the following:
<ListView
ItemsSource="{Binding Categorias}"
SelectedItem="{Binding SelectedCategoria, Mode=TwoWay}"
HasU...
I am trying to use the Pub-Sub pattern to communicate the ViewModels of my application, but I must be doing something wrong, since I do not get the events to trigger.
The class with the code to handle the events is this:
namespace App.S...
I have the following code.
ajusteCbb.ItemsSource = new Dictionary<string, string> { { "A", "SI" }, { "C", "NO" } };
ajusteCbb.DisplayMemberPath = "Value";
ajusteCbb.SelectedValuePath = "Key";
and in a Datagrid I have this code
<D...
I try to change the property Header of an Expander to vary the title of this variable depending on but there is no way ...
If I add a constant to the Header, it works correctly;
<Expander Name="Header" Margin="4" Header="Config ni...
Can I somehow center the title (Header) of a GroupBox so that it is always established in the center of the control itself?
I do not know if there is any property that makes it easier for me to do what I want ... I'm reviewing th...
I am working with WPF, Visual Studio 2015, in which I want to place buttons next to each other as well as this image.
I've only been able to achieve this.
This is the XAML code that I am occupying, what I did was put a Grid wit...