我的 WPF Powermill 工具

xaml界面:

cs 复制代码
using System;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Imaging;
using System.Windows.Navigation;
using System.Windows.Shapes;

namespace Powermill编程工具
{
    /// <summary>
    /// MainWindow.xaml 的交互逻辑
    /// </summary>
    public partial class MainWindow : Window
    {
        //定义刀具列表全局变量
        public ObservableCollection<string> tool_list { get; set; }

        //定义后处理器列表全局变量
        public ObservableCollection<string> post_list { get; set; }

        //定义刀路信息列表全局变量
        public ObservableCollection<path_inf> path_infs { get; set; }

        private void DeleteSelectedItem_Click(object sender, RoutedEventArgs e)
        {
            // 判断是否选中行
            if (lvList.SelectedItem == null)
                return;

            // 获取选中的数据项
            path_inf selectedItem = (path_inf)lvList.SelectedItem;

            // 从 ObservableCollection 中删除(自动刷新UI)
            if (DataContext is MainWindow vm)
            {
                vm.path_infs.Remove(selectedItem);
            }
        }

        public MainWindow()
        {
            InitializeComponent();

            //初始化 运行中的Powermill 下拉选项
            ObservableCollection<pm_project> pm_projects = new ObservableCollection<pm_project>
            {
                new pm_project { Name = "Alice" },
                new pm_project { Name = "Bob" },
                new pm_project { Name = "Charlie" }
            };
            Powermill_list.ItemsSource = pm_projects;
            Powermill_list.SelectedIndex = 0;

            //初始化刀具列表
            tool_list = new ObservableCollection<string>
            {
                "D63R8","D35R5","D16R0.8","D10R0","D20R0","D30R0"
            };

            //初始化刀路信息
            path_infs = new ObservableCollection<path_inf>
            {
                new path_inf { path_name = "开粗",tool_name="D10R0",offset=@"0.5/0.2",spindle="2000",feedrate="3000" },
                new path_inf { path_name = "光平面",tool_name="D20R0",offset=@"0.2/0.2",spindle="3000",feedrate="1000" },
                new path_inf { path_name = "清角",tool_name="D30R0",offset=@"0.3/0.2",spindle="4000",feedrate="500" }
            };
            lvList.ItemsSource = path_infs;

            //初始化后处理器列
            post_list = new ObservableCollection<string>
            {
                "发那科",
                "西门子",
                "北京精雕"
            };
            post_ComboBox.ItemsSource = post_list;
            post_ComboBox.SelectedIndex = 0;

            // 绑定数据源上下文
            DataContext = this;
        }
    }

    //运行中的pm项目
    public class pm_project
    {
        public string Name { get; set; }
    }

    //列表行数据模型
    public class path_inf
    {
        public string path_name { get; set; }   //刀路名
        public string tool_name { get; set; }   //刀具名
        public string offset { get; set; }      //余量
        public string spindle { get; set; }     //转速
        public string feedrate { get; set; }     //进给
    }
}

CS后台:

cs 复制代码
using System;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Imaging;
using System.Windows.Navigation;
using System.Windows.Shapes;

namespace Powermill编程工具
{
    /// <summary>
    /// MainWindow.xaml 的交互逻辑
    /// </summary>
    public partial class MainWindow : Window
    {
        //定义刀具列表全局变量
        public ObservableCollection<string> tool_list { get; set; }

        //定义后处理器列表全局变量
        public ObservableCollection<string> post_list { get; set; }

        //定义刀路信息列表全局变量
        public ObservableCollection<path_inf> path_infs { get; set; }

        private void DeleteSelectedItem_Click(object sender, RoutedEventArgs e)
        {
            // 判断是否选中行
            if (lvList.SelectedItem == null)
                return;

            // 获取选中的数据项
            path_inf selectedItem = (path_inf)lvList.SelectedItem;

            // 从 ObservableCollection 中删除(自动刷新UI)
            if (DataContext is MainWindow vm)
            {
                vm.path_infs.Remove(selectedItem);
            }
        }

        public MainWindow()
        {
            InitializeComponent();

            //初始化 运行中的Powermill 下拉选项
            ObservableCollection<pm_project> pm_projects = new ObservableCollection<pm_project>
            {
                new pm_project { Name = "Alice" },
                new pm_project { Name = "Bob" },
                new pm_project { Name = "Charlie" }
            };
            Powermill_list.ItemsSource = pm_projects;
            Powermill_list.SelectedIndex = 0;

            //初始化刀具列表
            tool_list = new ObservableCollection<string>
            {
                "D63R8","D35R5","D16R0.8","D10R0","D20R0","D30R0"
            };

            //初始化刀路信息
            path_infs = new ObservableCollection<path_inf>
            {
                new path_inf { path_name = "开粗",tool_name="D10R0",offset=@"0.5/0.2",spindle="2000",feedrate="3000" },
                new path_inf { path_name = "光平面",tool_name="D20R0",offset=@"0.2/0.2",spindle="3000",feedrate="1000" },
                new path_inf { path_name = "清角",tool_name="D30R0",offset=@"0.3/0.2",spindle="4000",feedrate="500" }
            };
            lvList.ItemsSource = path_infs;

            //初始化后处理器列
            post_list = new ObservableCollection<string>
            {
                "发那科",
                "西门子",
                "北京精雕"
            };
            post_ComboBox.ItemsSource = post_list;
            post_ComboBox.SelectedIndex = 0;

            // 绑定数据源上下文
            DataContext = this;
        }
    }

    //运行中的pm项目
    public class pm_project
    {
        public string Name { get; set; }
    }

    //列表行数据模型
    public class path_inf
    {
        public string path_name { get; set; }   //刀路名
        public string tool_name { get; set; }   //刀具名
        public string offset { get; set; }      //余量
        public string spindle { get; set; }     //转速
        public string feedrate { get; set; }     //进给
    }
}
相关推荐
bugcome_com3 小时前
Avalonia 控件模板实战:从 WPF 迁移自定义 Button 样式的完整指南
wpf
七夜zippoe3 小时前
DolphinDB 故障排查实战:系统、数据库与集群常见问题诊断
数据库·wpf·集群·常见问题·故障排查·dolphindb
dalong101 天前
WPF:箭头绘制程序
wpf·自定义绘制
张工在路上2 天前
WPF 布局基础概述
大数据·hadoop·wpf
迪飞特科技3 天前
分布式事务下 Spring 声明式事务失效的 3 种修复方案
分布式·spring·wpf
2601_962174176 天前
Redis 简介
数据库·redis·wpf
SamChan907 天前
Python+PyMuPDF提取PDF表格并翻译:表格结构检测与双语重建实战
windows·python·ai·pdf·wpf
SamChan907 天前
Python+OpenCV检测PDF翻译后排版偏移:像素级格式一致性验证
python·opencv·ai·pdf·wpf
FuckPatience7 天前
WPF 拿到控件的最初样式,修改获得焦点样式
wpf
主宰者7 天前
【WPF】MainWindow前添加加载窗口,发现加载过程中有白色无内容窗口闪烁一下的解决方案
wpf