• 大小: 25.03MB
    文件类型: .zip
    金币: 2
    下载: 1 次
    发布日期: 2023-06-21
  • 语言: C#
  • 标签: 3D打印  

资源简介

这个是reprap host是C#开发的,刚才上传错误了对不起大家!现在重新上传

资源截图

代码片段和文件信息

/*
   Copyright 2011 repetier repetierdev@gmail.com

   Licensed under the Apache License Version 2.0 (the “License“);
   you may not use this file except in compliance with the License.
   You may obtain a copy of the License at

       http://www.apache.org/licenses/LICENSE-2.0

   Unless required by applicable law or agreed to in writing software
   distributed under the License is distributed on an “AS IS“ BASIS
   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND either express or implied.
   See the License for the specific language governing permissions and
   limitations under the License.
*/

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.IO;
using System.Windows.Forms;
using RepetierHost.model;
using RepetierHost.view;
using RepetierHost.view.utils;
using RepetierHost.model.geom;
using Microsoft.Win32;
using System.Threading;
using System.Diagnostics;
using RepetierHost.model;
using RepetierHost.connector;
using System.Runtime.InteropServices;
using RepetierHost.view.calibration;

namespace RepetierHost
{
    public delegate void executeHostCommandDelegate(GCode code);
    public delegate void languageChangedEvent();

    public partial class Main : Form
    {
        public event languageChangedEvent languageChanged;
        private const int InfoPanel2MinSize = 440;
        public static PrinterConnection conn;
        public static Main main;
        public static FormPrinterSettings printerSettings;
        public static PrinterModel printerModel;
        public static ThreeDSettings threeDSettings;
        public static GlobalSettings globalSettings = null;
        public static GCodeGenerator generator = null;
        public string basictitle = ““;
        public static bool IsMono = Type.GetType(“Mono.Runtime“) != null;
        public static Slicer slicer = null;
        public static Slic3r slic3r = null;
        public static bool IsMac = false;

        public Skeinforge skeinforge = null;
        public EEPROMRepetier eepromSettings = null;
        public EEPROMMarlin eepromSettingsm = null;
        public LogView logView = null;
        public PrintPanel printPanel = null;
        public RegistryKey repetierKey;
        public ThreeDControl threedview = null;
        public ThreeDView jobPreview = null;
        public ThreeDView printPreview = null;
        public GCodeVisual jobVisual = new GCodeVisual();
        public GCodeVisual printVisual = null;
        public STLComposer objectPlacement = null;
        public volatile GCodeVisual newVisual = null;
        public volatile bool jobPreviewThreadFinished = true;
        public volatile Thread previewThread = null;
        public RegMemory.FilesHistory fileHistory = new RegMemory.FilesHistory(“fileHistory“ 8);
        public int refreshCounter = 0;
        public executeHostCom

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     目录           0  2015-07-13 14:27  Repetier-Host-master\
     文件         732  2015-07-13 14:27  Repetier-Host-master\.gitignore
     文件       11358  2015-07-13 14:27  Repetier-Host-master\APACHE-LICENSE-2.0.txt
     文件        1093  2015-07-13 14:27  Repetier-Host-master\README.md
     文件         629  2015-07-13 14:27  Repetier-Host-master\README.txt
     文件        5194  2015-07-13 14:27  Repetier-Host-master\Repetier-Host-licence.txt
     文件    20611103  2015-07-13 14:27  Repetier-Host-master\RepetierHostMacOSX.dmg
     文件       11167  2015-07-13 14:27  Repetier-Host-master\changelog.txt
     文件        1022  2015-07-13 14:27  Repetier-Host-master\installation.txt
     目录           0  2015-07-13 14:27  Repetier-Host-master\linux\
     文件         396  2015-07-13 14:27  Repetier-Host-master\linux\buildLinux.sh
     文件      229627  2015-07-13 14:27  Repetier-Host-master\linux\hostsplash.png
     目录           0  2015-07-13 14:27  Repetier-Host-master\macosx\
     文件      301292  2015-07-13 14:27  Repetier-Host-master\macosx\Applications
     文件      191386  2015-07-13 14:27  Repetier-Host-master\macosx\DMGBackground.png
     文件     1404411  2015-07-13 14:27  Repetier-Host-master\macosx\DMGBackground.psd
     文件      200582  2015-07-13 14:27  Repetier-Host-master\macosx\repetier-logo-trans128.icns
     文件      187393  2015-07-13 14:27  Repetier-Host-master\macosx\repetier-logo128.icns
     目录           0  2015-07-13 14:27  Repetier-Host-master\screenshots\
     文件       23710  2015-07-13 14:27  Repetier-Host-master\screenshots\3dsettings.png
     文件       30802  2015-07-13 14:27  Repetier-Host-master\screenshots\3dsettings2.png
     文件       38366  2015-07-13 14:27  Repetier-Host-master\screenshots\3dsettings3.png
     文件       32538  2015-07-13 14:27  Repetier-Host-master\screenshots\3dsettings4.png
     文件       65447  2015-07-13 14:27  Repetier-Host-master\screenshots\advance_testcase.png
     文件       67952  2015-07-13 14:27  Repetier-Host-master\screenshots\eeprom.png
     文件      417207  2015-07-13 14:27  Repetier-Host-master\screenshots\job.png
     文件       32745  2015-07-13 14:27  Repetier-Host-master\screenshots\printerinformation.png
     文件       42982  2015-07-13 14:27  Repetier-Host-master\screenshots\printersettings1.png
     文件       42281  2015-07-13 14:27  Repetier-Host-master\screenshots\printersettings2.png
     文件       36718  2015-07-13 14:27  Repetier-Host-master\screenshots\printersettings3.png
     文件       18007  2015-07-13 14:27  Repetier-Host-master\screenshots\printersettings4.png
............此处省略444个文件信息

评论

共有 条评论