Posts by Jackson Silva de Faria • 1 point
3 posts
-
0
votes3
answers2649
viewsA: SQL to search the entire database
SELECT * FROM information_schema.Tables WHERE table_schema = 'bank name'; Removed from here
-
0
votes3
answers903
viewsA: How to apply String formatting in Datagrid - WPF
Make a friend convert. <DataGridTextColumn Header="CPF" MinWidth="100" Binding=" {Binding CPF, Converter={StaticResource NationalRegistrationConverter}}"/> follow the convert that use. ///…
wpfanswered Jackson Silva de Faria 1 -
0
votes2
answers71
viewsA: Error while trying to change cursor during C#algorithm
I think you should use Binding... no . xaml Cursor="{Binding cursor}" no . Cs private Cursor _cursor; public Cursor cursor { get { return _cursor; } set { _cursor = value;…