PageRenderTime 44ms CodeModel.GetById 16ms RepoModel.GetById 0ms app.codeStats 0ms

/V2/trunk/RI/Desktop/StockTraderRI/VisibilityToStarHeightConverter.Desktop.cs

#
C# | 43 lines | 25 code | 2 blank | 16 comment | 2 complexity | a842481ec9b9ad8450e417858142a20c MD5 | raw file
  1. //===================================================================================
  2. // Microsoft patterns & practices
  3. // Composite Application Guidance for Windows Presentation Foundation and Silverlight
  4. //===================================================================================
  5. // Copyright (c) Microsoft Corporation. All rights reserved.
  6. // THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY
  7. // OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT
  8. // LIMITED TO THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
  9. // FITNESS FOR A PARTICULAR PURPOSE.
  10. //===================================================================================
  11. // The example companies, organizations, products, domain names,
  12. // e-mail addresses, logos, people, places, and events depicted
  13. // herein are fictitious. No association with any real company,
  14. // organization, product, domain name, email address, logo, person,
  15. // places, or events is intended or should be inferred.
  16. //===================================================================================
  17. using System;
  18. using System.Globalization;
  19. using System.Windows;
  20. using System.Windows.Data;
  21. namespace StockTraderRI
  22. {
  23. public class VisibilityToStarHeightConverter : IValueConverter
  24. {
  25. public object Convert(object value, Type targetType, object parameter, CultureInfo culture)
  26. {
  27. if ((Visibility)value == Visibility.Collapsed)
  28. {
  29. return new GridLength(0, GridUnitType.Star);
  30. }
  31. else
  32. {
  33. return new GridLength(double.Parse(parameter.ToString(), culture), GridUnitType.Star);
  34. }
  35. }
  36. public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture)
  37. {
  38. throw new NotImplementedException();
  39. }
  40. }
  41. }