示例:计算屏幕分辨率比例

作者:追风剑情 发布于:2019-12-12 14:37 分类:C#

一、创建WPF项目

MainWindow.xaml

  1. <Window x:Class="Resolution.MainWindow"
  2. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4. xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  5. xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  6. xmlns:local="clr-namespace:Resolution"
  7. mc:Ignorable="d"
  8. Title="" Height="150" Width="320" WindowStyle="ToolWindow">
  9. <Grid>
  10. <Button x:Name="calBtn" Content="计算分辨率比例" HorizontalAlignment="Left" Margin="77,61,0,0" VerticalAlignment="Top" Width="135" FontSize="16" Click="calBtn_Click"/>
  11. <Label x:Name="rateText" Content="16 : 9" HorizontalAlignment="Left" Margin="217,56,0,0" VerticalAlignment="Top" FontSize="20" Background="#00000000" Foreground="Red"/>
  12. <Label Content="分辨率:" HorizontalAlignment="Left" Margin="10,16,0,0" VerticalAlignment="Top" FontSize="16"/>
  13. <TextBox x:Name="widthText" InputMethod.IsInputMethodEnabled="False" HorizontalAlignment="Left" Height="23" Margin="78,20,0,0" TextWrapping="Wrap" Text="1920" VerticalAlignment="Top" Width="90" FontSize="18"/>
  14. <TextBox x:Name="heightText" InputMethod.IsInputMethodEnabled="False" HorizontalAlignment="Left" Height="23" Margin="195,20,0,0" TextWrapping="Wrap" Text="1080" VerticalAlignment="Top" Width="90" FontSize="18" PreviewTextInput="tb_PreviewTextInput"/>
  15. <Label Content="×" HorizontalAlignment="Left" Margin="169,14,0,0" VerticalAlignment="Top" FontSize="20"/>
  16. </Grid>
  17. </Window>

MainWindow.xaml.cs

  1. using System;
  2. using System.Text.RegularExpressions;
  3. using System.Windows;
  4. using System.Windows.Input;
  5.  
  6. namespace Resolution
  7. {
  8. /// <summary>
  9. /// MainWindow.xaml 的交互逻辑
  10. /// </summary>
  11. public partial class MainWindow : Window
  12. {
  13. public MainWindow()
  14. {
  15. InitializeComponent();
  16. rateText.Content = string.Empty;
  17. }
  18.  
  19. private void calBtn_Click(object sender, RoutedEventArgs e)
  20. {
  21. rateText.Content = string.Empty;
  22.  
  23. if (string.IsNullOrEmpty(widthText.Text) || string.IsNullOrEmpty(heightText.Text))
  24. return;
  25.  
  26. string widthStr = widthText.Text.Trim();
  27. string heightStr = heightText.Text.Trim();
  28.  
  29. if (string.IsNullOrEmpty(widthStr) || string.IsNullOrEmpty(heightStr))
  30. return;
  31.  
  32. int width = int.Parse(widthStr);
  33. int height = int.Parse(heightStr);
  34.  
  35. int gcd = EuclidGcd(width, height);
  36. int w = width / gcd;
  37. int h = height / gcd;
  38.  
  39. rateText.Content = string.Format("{0} : {1}", w, h);
  40. }
  41.  
  42. /// <summary>
  43. /// 辗转相除法求a和b的最大公约数
  44. /// </summary>
  45. private int EuclidGcd(int a, int b)
  46. {
  47. if (b > a)
  48. {
  49. int tmp = a;
  50. a = b;
  51. b = tmp;
  52. }
  53.  
  54. while (b != 0)
  55. {
  56. int tmp_b = b;
  57. b = a % b;
  58. a = tmp_b;
  59. }
  60.  
  61. return a;
  62. }
  63.  
  64. private void tb_PreviewTextInput(object sender, TextCompositionEventArgs e)
  65. {
  66. Regex re = new Regex("[^0-9.-]+");
  67. e.Handled = re.IsMatch(e.Text);
  68. }
  69. }
  70. }

运行测试

11111.png

标签: C#

Powered by emlog  蜀ICP备18021003号-1   sitemap

川公网安备 51019002001593号