Click here to Skip to main content
15,910,981 members
Home / Discussions / WPF
   

WPF

 
GeneralRe: How to return the value in Silverlight? Pin
Mycroft Holmes14-Feb-11 23:14
professionalMycroft Holmes14-Feb-11 23:14 
GeneralRe: How to return the value in Silverlight? Pin
Tesic Goran15-Feb-11 0:28
professionalTesic Goran15-Feb-11 0:28 
GeneralRe: How to return the value in Silverlight? Pin
Mycroft Holmes15-Feb-11 13:27
professionalMycroft Holmes15-Feb-11 13:27 
GeneralRe: How to return the value in Silverlight? Pin
Pete O'Hanlon16-Feb-11 7:37
mvePete O'Hanlon16-Feb-11 7:37 
GeneralRe: How to return the value in Silverlight? Pin
Tesic Goran17-Feb-11 1:27
professionalTesic Goran17-Feb-11 1:27 
GeneralRe: How to return the value in Silverlight? Pin
Tesic Goran17-Feb-11 3:18
professionalTesic Goran17-Feb-11 3:18 
GeneralRe: How to return the value in Silverlight? Pin
Pete O'Hanlon17-Feb-11 8:44
mvePete O'Hanlon17-Feb-11 8:44 
Questionwpf mvvm pattern Checkboxes to be checked by default. Pin
Himanshu0614198213-Feb-11 20:40
Himanshu0614198213-Feb-11 20:40 
<ListBox Margin="1,1,0,0" Grid.Row="2" Grid.Column="2" Name="lstEntityType" VerticalAlignment="Top"
SelectedItem="Binding Path=SelectedEntityList,UpdateSourceTrigger=PropertyChanged" ItemsSource="{Binding Path=SearchEntitiesTypes, Mode=OneWay}"
Width="120" Height="59" ScrollViewer.VerticalScrollBarVisibility="Auto" ScrollViewer.HorizontalScrollBarVisibility="Auto" HorizontalAlignment="Left" Grid.RowSpan="2">
<ListBox.ItemTemplate>
<DataTemplate>
<CheckBox Name="chklstEntityType" ClickMode="Press" IsChecked="true" Height="15" >
<CheckBox.Content>
<TextBlock Text="{Binding Path=SearchType}"></TextBlock>
</CheckBox.Content>
</CheckBox>
</DataTemplate>
</ListBox.ItemTemplate>
<ListBox.ItemContainerStyle>
<Style TargetType="{x:Type ListBoxItem}">
<Setter Property="IsSelected" Value="true"/>
<Style.Triggers>
<Trigger Property="IsSelected" Value="True">

</Trigger>
</Style.Triggers>

</Style>
</ListBox.ItemContainerStyle>

</ListBox>

These checkboxes should be checked by default . THe checkboxes are linked to a property. I have used mvvm pattern.
AnswerRe: wpf mvvm pattern Checkboxes to be checked by default. Pin
Abhinav S13-Feb-11 21:15
Abhinav S13-Feb-11 21:15 
QuestionOpacityMask Brush Pin
HoltDan12-Feb-11 6:14
HoltDan12-Feb-11 6:14 
AnswerRe: OpacityMask Brush Pin
SledgeHammer0112-Feb-11 8:15
SledgeHammer0112-Feb-11 8:15 
GeneralRe: OpacityMask Brush Pin
HoltDan12-Feb-11 8:50
HoltDan12-Feb-11 8:50 
QuestionSilverlight or WPF Pin
Toniyo Jackson10-Feb-11 20:45
Toniyo Jackson10-Feb-11 20:45 
AnswerRe: Silverlight or WPF Pin
Mycroft Holmes10-Feb-11 21:06
professionalMycroft Holmes10-Feb-11 21:06 
GeneralRe: Silverlight or WPF Pin
Toniyo Jackson10-Feb-11 21:39
Toniyo Jackson10-Feb-11 21:39 
AnswerRe: Silverlight or WPF Pin
Abhinav S10-Feb-11 21:40
Abhinav S10-Feb-11 21:40 
GeneralRe: Silverlight or WPF Pin
Toniyo Jackson10-Feb-11 21:42
Toniyo Jackson10-Feb-11 21:42 
GeneralRe: Silverlight or WPF Pin
Abhinav S10-Feb-11 21:49
Abhinav S10-Feb-11 21:49 
AnswerRe: Access an Element using reflection Pin
Pete O'Hanlon10-Feb-11 11:58
mvePete O'Hanlon10-Feb-11 11:58 
GeneralRe: Access an Element using reflection Pin
Pete O'Hanlon11-Feb-11 3:23
mvePete O'Hanlon11-Feb-11 3:23 
GeneralRe: Access an Element using reflection Pin
Pete O'Hanlon11-Feb-11 9:08
mvePete O'Hanlon11-Feb-11 9:08 
AnswerRe: Access an Element using reflection Pin
dasblinkenlight10-Feb-11 15:20
dasblinkenlight10-Feb-11 15:20 
Questionmemory usage Pin
arkiboys8-Feb-11 23:11
arkiboys8-Feb-11 23:11 
AnswerRe: memory usage Pin
Pete O'Hanlon9-Feb-11 0:49
mvePete O'Hanlon9-Feb-11 0:49 
AnswerRe: memory usage Pin
Steve Maier9-Feb-11 4:27
professionalSteve Maier9-Feb-11 4:27 

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.