Posts by Celso Lívero • 214 points
8 posts
-
0
votes1
answer161
viewsA: How to create grid lists with C# in WPF?
the content must be placed within a ItemsControl thus: <ItemsControl ItemsSource="{Binding Tasks, UpdateSourceTrigger=PropertyChanged}" ScrollViewer.CanContentScroll="True"…
-
2
votes1
answer474
viewsA: Probabilistic Considerations on the Calculation of Shannon Entropy in a Network Traffic
1) If you can reach the same conclusion for the probability distributions in samples with different time intervals on different days your answer is yes. 2) an experiment must be prepared/thought…
-
-1
votes1
answer301
viewsA: Visual Studio 2017 Cordova compile apk
The compilation was made successfully. I just don’t know what kind of return an Html5 compilation is looked in the Debug folder of your project which resulted? gave a read here or here? From the…
-
2
votes1
answer512
viewsA: How to do an INNER JOIN by bringing specific fields from two tables and removing the repeated records and with a max condition?
Adding up the Points of the same waiter (ex.: Juliana Oliveira => 100 + 123) SELECT g.nome Garcom,sum(p.pontos) TotalPontos FROM tabela01 g JOIN tabela02 p ON p.garcom_id = g.id GROUP BY g.nome…
-
0
votes1
answer112
viewsA: Multithreading - Opening new WPF window
I don’t use more than 1 window for applications, just use the main window and fill it with Viewmodels-linked usercontrols in the MVVM model, but usually when it comes to using different threadVoce…
-
1
votes1
answer446
viewsA: Progressbar WPF
1 - BackgroundWorkeris currently in disuse. 2 - Use MVVM when working with WPF, it is made to work perfectly with this model. 3 - To work Progressbar you need its work to be done in another thread…
-
0
votes3
answers345
viewsA: Dynamic search in c# and WPF
Usa Entity Framework + npgsql works 100% and you make every kind of query you need Postgresql + Entityframework a necessary change (I do not know if it is more after so long I use) is to add to…
-
0
votes3
answers903
viewsA: How to apply String formatting in Datagrid - WPF
Based on this you will create a class or struct that contains the data you want to link to the datagrid and this class will be responsible for receiving and formatting the data (since this type of…
wpfanswered Celso Lívero 214