Advanced Forum Search Results
-
There is a way to populate a Datagrid with this Data format
First Name Last Name
John ...
-
Ok Rabbott, works.
But How I create a Datagrid to recieve this data <data:DataGrid x:Name="DTG_LOCACOES" Margin="0,80,0,0" Height="330" AutoGenerateColumns="False">
<data:DataGrid.Columns>
<data:DataGridTemplateColumn ...
-
Dim LISTA As New List(Of contratos)
Dim itenslista As New List(Of itcontratos)
itenslista.Add(New itcontratos With {.DESCRICAO = "abcdes", .UNIDADE = "123"}) itenslista.Add(New itcontratos With {.DESCRICAO = "fghij", .UNIDADE = "456"})
itenslista.Add(New itcontratos With {.DESCRICAO = "klmno", ...
-
I watch the Tim Heuer´s video about Master Detail with Datagrid. But how I use if I have many lines in details??
-
I have a textbox Binding to a property. When the Throw New Exception of this property is fired I want keep the focus on this Textbox.
How I make this??
-
When I use Throw New Exception in a Property How I show the message inside the Throw New Exception on Silverlight? Private privateQTDE As Integer
Public Property QTDE() As Integer
Get
Return privateQTDE
End Get
Set(ByVal value As Integer)
If value <= ...
-
Hello
I try to use esite´s code but I can´t
Sergey the Datagrid is loaded. I have to load combobox after chose a value in a second combobox in this same datagrid
-
How I populate a Combobox if is inside a DataGridTemplateColumn???
thx.
-
I found the answer
string.format
thx
-
Ok IValueConverter works
Just one more question. If I enter 20,30 after convert i recive 20,3. How I preserve the Zero??
Imports System.Windows.Data
Namespace CONV
Public Class CONVERTEVALOR
Implements IValueConverter
Public Function Convert(ByVal value As Object, ByVal targetType As System.Type, ...