Click here to Skip to main content
15,900,461 members
Home / Discussions / .NET (Core and Framework)
   

.NET (Core and Framework)

 
GeneralRe: MVVM add two textbox Pin
Paolo Mazzon25-Dec-14 7:02
Paolo Mazzon25-Dec-14 7:02 
Generalwebsite hosting Pin
Member 1132036518-Dec-14 1:43
Member 1132036518-Dec-14 1:43 
GeneralRe: website hosting Pin
syed shanu22-Dec-14 18:40
professionalsyed shanu22-Dec-14 18:40 
AnswerRe: website hosting Pin
Afzaal Ahmad Zeeshan9-Jan-15 20:22
professionalAfzaal Ahmad Zeeshan9-Jan-15 20:22 
Questionmsi commandline how to update? Pin
neodeaths13-Dec-14 21:37
neodeaths13-Dec-14 21:37 
AnswerRe: msi commandline how to update? Pin
Richard MacCutchan14-Dec-14 3:01
mveRichard MacCutchan14-Dec-14 3:01 
GeneralRe: msi commandline how to update? Pin
neodeaths14-Dec-14 3:50
neodeaths14-Dec-14 3:50 
GeneralRe: msi commandline how to update? Pin
Slalom Zhang14-Dec-14 4:44
Slalom Zhang14-Dec-14 4:44 
QuestionWinform inter-communications between apps Pin
rfresh13-Dec-14 16:09
rfresh13-Dec-14 16:09 
AnswerRe: Winform inter-communications between apps Pin
Richard MacCutchan13-Dec-14 21:21
mveRichard MacCutchan13-Dec-14 21:21 
Questioncan a msi installer in silent mode running from service have a success prompt to a user? Pin
neodeaths12-Dec-14 19:43
neodeaths12-Dec-14 19:43 
AnswerRe: can a msi installer in silent mode running from service have a success prompt to a user? Pin
Eddy Vluggen13-Dec-14 3:09
professionalEddy Vluggen13-Dec-14 3:09 
QuestionMVVM Activate Button Save Pin
Paolo Mazzon10-Dec-14 2:08
Paolo Mazzon10-Dec-14 2:08 
QuestionGet specific text inside a web table (webbrowser control) Pin
TreoNet10-Dec-14 0:25
TreoNet10-Dec-14 0:25 
GeneralRe: Get specific text inside a web table (webbrowser control) Pin
Richard MacCutchan10-Dec-14 1:00
mveRichard MacCutchan10-Dec-14 1:00 
Questionfinding all instances of exchange server on LAN Pin
JSingh_Freelancer8-Dec-14 7:48
JSingh_Freelancer8-Dec-14 7:48 
GeneralRe: finding all instances of exchange server on LAN Pin
PIEBALDconsult8-Dec-14 7:56
mvePIEBALDconsult8-Dec-14 7:56 
GeneralRe: finding all instances of exchange server on LAN Pin
JSingh_Freelancer9-Dec-14 8:57
JSingh_Freelancer9-Dec-14 8:57 
AnswerRe: finding all instances of exchange server on LAN Pin
Eddy Vluggen8-Dec-14 8:11
professionalEddy Vluggen8-Dec-14 8:11 
QuestionAsp.Net Pin
Hems0017-Dec-14 23:33
Hems0017-Dec-14 23:33 
GeneralRe: Asp.Net Pin
Kornfeld Eliyahu Peter7-Dec-14 23:47
professionalKornfeld Eliyahu Peter7-Dec-14 23:47 
Questionvalidate combobox does not work Pin
Paolo Mazzon7-Dec-14 19:40
Paolo Mazzon7-Dec-14 19:40 
XML
Hello I have a combobox binding to a ObservableCollection of a table, where I fetch the ID field that deposit in another table, so everything is right, the problem arises when I want my ValidatesOnNotifyDataErrors doing its job, but it does the property in question is set to [Required] will post the code I hope you can help out:

Combobox:

<pre lang="xml"><ComboBox HorizontalAlignment="Left" Margin="327,116,0,0" VerticalAlignment="Top" Width="120" ItemsSource="{Binding NegozioObser}" SelectedItem="{Binding NegozioSelezionato, ValidatesOnNotifyDataErrors=True}">
                <ComboBox.ItemTemplate>
				<DataTemplate>
					<Grid>
						<TextBlock Text="{Binding RagioneSociale}"/>
					</Grid>
				</DataTemplate>
			</ComboBox.ItemTemplate>
		</ComboBox>


property destination in the table Envelope:

[Required]
        
        public int NegozioID 
        {
            get { return _NegozioID; }
            set { _NegozioID = value; RaisePropertyChanged("NegozioID"); }
        }



withdrawal from the property NegozioID table Shop through this ObservableCollections:

C#
ObservableCollection<Negozio> _Negozios;

        public ObservableCollection<Negozio> NegozioObser
        {
            get { return _Negozios; }
            set
            {
                _Negozios = value;
                RaisePropertyChanged("NegozioObser");
            }
        }

AnswerRe: validate combobox does not work Pin
Richard Deeming9-Dec-14 1:41
mveRichard Deeming9-Dec-14 1:41 
GeneralRe: validate combobox does not work Pin
Paolo Mazzon9-Dec-14 6:07
Paolo Mazzon9-Dec-14 6:07 
GeneralRe: validate combobox does not work Pin
Richard Deeming9-Dec-14 6:46
mveRichard Deeming9-Dec-14 6:46 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.