Click here to Skip to main content
15,867,686 members
Home / Discussions / WPF
   

WPF

 
GeneralRe: WPF Merged Resource Dictionary Pin
Kevin Marois5-Apr-12 5:31
professionalKevin Marois5-Apr-12 5:31 
Questionwpf-mediaElement Pin
mane08064-Apr-12 5:44
mane08064-Apr-12 5:44 
AnswerRe: wpf-mediaElement Pin
Pete O'Hanlon4-Apr-12 5:48
subeditorPete O'Hanlon4-Apr-12 5:48 
QuestionCan we have any website for wpf UI development like http://www.microsoft.com/design/toolbox ? Pin
vish27030074-Apr-12 5:30
vish27030074-Apr-12 5:30 
AnswerRe: Can we have any website for wpf UI development like http://www.microsoft.com/design/toolbox ? Pin
Mycroft Holmes4-Apr-12 14:33
professionalMycroft Holmes4-Apr-12 14:33 
QuestionStill slightly struggling with Binding Pin
Sutton Mehaffey4-Apr-12 5:18
Sutton Mehaffey4-Apr-12 5:18 
AnswerRe: Still slightly struggling with Binding Pin
Pete O'Hanlon4-Apr-12 5:46
subeditorPete O'Hanlon4-Apr-12 5:46 
GeneralRe: Still slightly struggling with Binding Pin
Sutton Mehaffey4-Apr-12 7:33
Sutton Mehaffey4-Apr-12 7:33 
Obviously, I'm not getting it. I've been in the embedded world for 25 years. And, some of the Windows programming isn't making sense quite yet. I guess I'll have to get the exact code working before I can analyze each piece before I understand how it works.

I already have a Grid broken down into subgrids. One of the subgrids, I would like to contain this ListBox. How do I incorporate your WPF code into my subgrid? Here is the previous WPF code in which you said my method isn't going to work.

Also, in my C# code, I will populate the ListBox based on the system the user selects. If he selects system 'A', the box will have 5 entries. If he selects system 'B', the box will have 64 entries. That was the previous code I sent you. I can't do it all in WPF.

HTML
<DataGrid Grid.Column="0" Grid.Row="1" Height="150" Width="300"
   CanUserAddRows="false"
   AutoGenerateColumns ="false"
   HorizontalAlignment="Left"
   RowHeight ="20"
   Margin="15,10,0,0"
   VerticalAlignment="Top"
   Name="ExternalAlarmTable"
   CanUserSortColumns="False"
   CanUserResizeColumns="False"
   CanUserReorderColumns="False"
   CanUserResizeRows="False"
   SelectionUnit="Cell">

   <DataGrid.Columns>
      <DataGridTextColumn Header = "Zone #"
         Width = "SizeToHeader"
         Binding = "{Binding ZoneNum}"
         IsReadOnly="true"/>

      <DataGridTextColumn Header = "External Alarm Setting"
         Binding = "{Binding ExternalAlarm}"
         Width="*"/>
   </DataGrid.Columns>
</DataGrid>

GeneralRe: Still slightly struggling with Binding Pin
Pete O'Hanlon4-Apr-12 22:53
subeditorPete O'Hanlon4-Apr-12 22:53 
GeneralRe: Still slightly struggling with Binding Pin
Sutton Mehaffey5-Apr-12 9:02
Sutton Mehaffey5-Apr-12 9:02 
GeneralRe: Still slightly struggling with Binding Pin
Pete O'Hanlon6-Apr-12 2:55
subeditorPete O'Hanlon6-Apr-12 2:55 
GeneralRe: Still slightly struggling with Binding Pin
Sutton Mehaffey6-Apr-12 4:45
Sutton Mehaffey6-Apr-12 4:45 
GeneralRe: Still slightly struggling with Binding Pin
Sutton Mehaffey4-Apr-12 10:03
Sutton Mehaffey4-Apr-12 10:03 
QuestionCreating User Control in WPF Pin
MemberDotNetting4-Apr-12 1:09
MemberDotNetting4-Apr-12 1:09 
Questionremote desktop via wp7 Pin
heba abu ghaleih22 3-Apr-12 22:36
heba abu ghaleih22 3-Apr-12 22:36 
AnswerRe: remote desktop via wp7 Pin
Pete O'Hanlon3-Apr-12 22:50
subeditorPete O'Hanlon3-Apr-12 22:50 
GeneralRe: remote desktop via wp7 Pin
heba abu ghaleih22 3-Apr-12 22:58
heba abu ghaleih22 3-Apr-12 22:58 
GeneralRe: remote desktop via wp7 Pin
Pete O'Hanlon3-Apr-12 23:08
subeditorPete O'Hanlon3-Apr-12 23:08 
GeneralRe: remote desktop via wp7 Pin
heba abu ghaleih22 3-Apr-12 23:36
heba abu ghaleih22 3-Apr-12 23:36 
GeneralRe: remote desktop via wp7 Pin
Pete O'Hanlon3-Apr-12 23:42
subeditorPete O'Hanlon3-Apr-12 23:42 
GeneralRe: remote desktop via wp7 Pin
heba abu ghaleih22 4-Apr-12 0:08
heba abu ghaleih22 4-Apr-12 0:08 
GeneralRe: remote desktop via wp7 Pin
Pete O'Hanlon4-Apr-12 0:27
subeditorPete O'Hanlon4-Apr-12 0:27 
QuestionDataGrid adds additional unnecessary row Pin
Mahesha9993-Apr-12 5:16
Mahesha9993-Apr-12 5:16 
AnswerRe: DataGrid adds additional unnecessary row Pin
Mahesha9993-Apr-12 5:22
Mahesha9993-Apr-12 5:22 
AnswerRe: DataGrid adds additional unnecessary row Pin
RobCroll3-Apr-12 5:42
RobCroll3-Apr-12 5:42 

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.