Advertisement
Guest User

Untitled

a guest
Jul 19th, 2019
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.67 KB | None | 0 0
  1. <Binding Path="Applicant2.Surname"/>
  2.  
  3. <MultiBinding StringFormat="{}{0} {1}">
  4. <Binding Path="Applicant2.Forenames"/>
  5. <Binding Path="Applicant2.Surname"/>
  6. </MultiBinding>
  7.  
  8. <MultiBinding StringFormat="{}{0} {1}">
  9. <Binding Path="Applicant2.Forenames" FallbackValue=""/>
  10. <Binding Path="Applicant2.Surname" FallbackValue=""/>
  11. </MultiBinding>
  12.  
  13. public int TotalSkidCount { get { return (int)GetValue(TotalSkidCountProperty); } set { SetValue(TotalSkidCountProperty, value); } }
  14. public static readonly DependencyProperty TotalSkidCountProperty = DependencyProperty.Register("TotalSkidCount", typeof(int), typeof(CirculerProgressBarControl));
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement