├── .gitignore ├── LICENSE ├── README.md ├── SeeSharpTools ├── JY.ArrayUtility │ ├── ArrayCalculation.cs │ ├── ArrayManipulation.cs │ ├── JY.ArrayUtility.csproj │ ├── JY.ArrayUtility.csproj.user │ ├── MajorOrder.cs │ ├── ParallelCalculation.cs │ ├── ParallelManipulation.cs │ └── Properties │ │ └── AssemblyInfo.cs ├── JY.Audio │ ├── Analyzer │ │ ├── AnalyzerBase.cs │ │ ├── DualToneAnalyzer.cs │ │ ├── LogChirpAnalyzer.cs │ │ ├── MismatchAnalyzer.cs │ │ ├── MultiToneAnalyzer.cs │ │ ├── SingleToneAnalyzer.cs │ │ ├── SteppedLevelSineAnalyzer.cs │ │ ├── SteppedSineCrosstalkAnalyzer.cs │ │ └── TimeDomainEstimate.cs │ ├── AudioAnalyzer.cs │ ├── AudioGenerator.cs │ ├── Common │ │ ├── ArrayGroup.cs │ │ ├── ArrayPair.cs │ │ ├── AudioErrorCode.cs │ │ ├── SeeSharpAudioErrorCode.cs │ │ ├── SeeSharpAudioException.cs │ │ └── i18n │ │ │ ├── I18nEntity.cs │ │ │ └── I18nLocalWrapper.cs │ ├── Equilizer │ │ ├── EqualizerBase.cs │ │ └── SteppedSineEqualizer.cs │ ├── JY.Audio.csproj │ ├── MultiWaveData.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Resources │ │ └── locale │ │ │ ├── i18n_Audio_CN.properties │ │ │ └── i18n_Audio_EN.properties │ ├── WaveData.cs │ └── Waveform │ │ ├── DualToneWaveform.cs │ │ ├── LogChirpWaveform.cs │ │ ├── MultiToneWaveform.cs │ │ ├── SingleToneWaveform.cs │ │ ├── SteppedLevelSineWaveform.cs │ │ ├── SteppedSineWaveform.cs │ │ └── WaveformBase.cs ├── JY.DSP.FilteringMCR │ ├── JY.DSP.FilteringMCR.csproj │ ├── JYFilter.cs │ ├── JYSpectrum.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ └── Source │ │ ├── DSPMatlab.dll │ │ ├── DSPMatlab.xml │ │ ├── DSPMatlab_X64.dll │ │ ├── DSPMatlab_X64.xml │ │ ├── DSPMatlab_X86.dll │ │ ├── DSPMatlab_X86.xml │ │ ├── MWArray.dll │ │ └── MWArray.xml ├── JY.DSP.Fundamental │ ├── Exception │ │ └── JYDSPException.cs │ ├── Generation.cs │ ├── JY.DSP.Fundamental.csproj │ ├── MKLImport │ │ ├── CBLASNative.cs │ │ ├── DFTINative.cs │ │ ├── Dfti.cs │ │ └── VMLNative.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Spectrum.cs │ └── SpectrumAux │ │ ├── BasicFFT.cs │ │ ├── DFTIDescMgr.cs │ │ ├── Definitions.cs │ │ └── Window.cs ├── JY.DSP.SoundVibration │ ├── HarmonicAnalyzer.cs │ ├── JY.DSP.SoundVibration.cs │ ├── JY.DSP.SoundVibration.csproj │ └── Properties │ │ └── AssemblyInfo.cs ├── JY.DSP.Utility.Fundamental │ ├── JY.DSP.Utility.Fundamental.csproj │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Resources │ │ ├── Definitions.cs │ │ ├── JYDSPException.cs │ │ ├── MathNet.Numerics.dll │ │ ├── MathNet.Numerics.xml │ │ └── Window.cs │ └── Spectrum.cs ├── JY.DSP.Utility │ ├── HarmonicAnalysis.cs │ ├── JY.DSP.Utility.csproj │ ├── MedianFilter.cs │ ├── PeakValleyAnalysis.cs │ ├── PhaseAnalizer.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ └── Resources.resx │ ├── Resources │ │ └── Coefficient.txt │ ├── SignalProcessing.cs │ ├── SquarewaveMeasurements.cs │ ├── Synchronizer.cs │ ├── SystemNoiseCalculation.cs │ └── ToneAnalyzer.cs ├── JY.DSP.UtilityTests │ ├── JY.DSP.UtilityTests.csproj │ ├── Properties │ │ └── AssemblyInfo.cs │ └── ToneAnalysisTests.cs ├── JY.Database │ ├── DbOperation.cs │ ├── JY.Database.csproj │ └── Properties │ │ └── AssemblyInfo.cs ├── JY.File │ ├── Common │ │ ├── Constants.cs │ │ ├── SeeSharpFileErrorCode.cs │ │ ├── SeeSharpFileException.cs │ │ └── i18n │ │ │ ├── I18nEntity.cs │ │ │ └── I18nLocalWrapper.cs │ ├── Convertor │ │ ├── DoubleConvertor.cs │ │ ├── FloatConvertor.cs │ │ ├── IConvertor.cs │ │ ├── IntConvertor.cs │ │ ├── ShortConvertor.cs │ │ ├── StringConvertor.cs │ │ ├── UIntConvertor.cs │ │ └── UShortConvertor.cs │ ├── File │ │ ├── AnalogWaveformFile.cs │ │ ├── BinHandler.cs │ │ ├── CsvHandler.cs │ │ ├── FileUtil.cs │ │ ├── IniFileParser │ │ │ ├── FileIniParser.cs │ │ │ ├── Model │ │ │ │ ├── Configuration │ │ │ │ │ ├── ConcatenateDuplicatedKeysIniParserConfiguration.cs │ │ │ │ │ └── IniParserConfiguration.cs │ │ │ │ ├── Formatting │ │ │ │ │ ├── DefaultIniDataFormatter.cs │ │ │ │ │ └── IIniDataFormatter.cs │ │ │ │ ├── IniData.cs │ │ │ │ ├── IniDataCaseInsensitive.cs │ │ │ │ ├── KeyData.cs │ │ │ │ ├── KeyDataCollection.cs │ │ │ │ ├── SectionData.cs │ │ │ │ └── SectionDataCollection.cs │ │ │ ├── Parser │ │ │ │ ├── ConcatenateDuplicatedKeysIniDataParser.cs │ │ │ │ └── IniDataParser.cs │ │ │ ├── StreamIniDataParser.cs │ │ │ └── StringIniParser.cs │ │ ├── IniHandler.cs │ │ └── MajorOrder.cs │ ├── JY.File.csproj │ ├── Properties │ │ └── AssemblyInfo.cs │ └── Resources │ │ └── locale │ │ ├── i18n_File_CN.properties │ │ └── i18n_File_EN.properties ├── JY.GUI │ ├── AquaGauge │ │ ├── AquaGauge.Designer.cs │ │ ├── AquaGauge.cs │ │ ├── AquaGauge.resx │ │ ├── AquaGaugeDesigner.cs │ │ └── Industry1AquaGauge.PNG │ ├── ButtonSwitch │ │ ├── ButtonSwitch.PNG │ │ ├── ButtonSwitch.cs │ │ ├── ButtonSwitchDesigner.cs │ │ ├── GraphicsExtensionMethods.cs │ │ ├── ImageHelper.cs │ │ └── Renderers │ │ │ ├── ToggleSwitchAndroidRenderer.cs │ │ │ ├── ToggleSwitchBrushedMetalRenderer.cs │ │ │ ├── ToggleSwitchCarbonRenderer.cs │ │ │ ├── ToggleSwitchFancyRenderer.cs │ │ │ ├── ToggleSwitchIOS5Renderer.cs │ │ │ ├── ToggleSwitchIphoneRenderer.cs │ │ │ ├── ToggleSwitchMetroRenderer.cs │ │ │ ├── ToggleSwitchModernRenderer.cs │ │ │ ├── ToggleSwitchOSXRenderer.cs │ │ │ └── ToggleSwitchRendererBase.cs │ ├── ButtonSwitchArray │ │ ├── ButtonSwitchArray.Designer.cs │ │ ├── ButtonSwitchArray.bmp │ │ ├── ButtonSwitchArray.cs │ │ ├── ButtonSwitchArray.resx │ │ ├── ButtonSwitchArrayDesigner.cs │ │ └── menu.saveimg.savepath20181113143907.bmp │ ├── Common │ │ ├── DataMarkerType.cs │ │ ├── MajorOrder.cs │ │ └── i18n │ │ │ ├── I18nEntity.cs │ │ │ └── I18nLocalWrapper.cs │ ├── EasyButton │ │ ├── EasyButton.PNG │ │ ├── EasyButton.cs │ │ ├── EasyButton.designer.cs │ │ ├── EasyButton.resx │ │ ├── EasyButtonProperty.Designer.cs │ │ ├── EasyButtonProperty.cs │ │ ├── EasyButtonProperty.resx │ │ └── EasyButtunDesigner.cs │ ├── EasyChart │ │ ├── EasyChart.Designer.cs │ │ ├── EasyChart.bmp │ │ ├── EasyChart.cs │ │ ├── EasyChart.resx │ │ ├── EasyChartAxis.cs │ │ ├── EasyChartComponents │ │ │ ├── DataEntity.cs │ │ │ ├── SeriesCollection.cs │ │ │ └── XDataInputType.cs │ │ ├── EasyChartCursor.cs │ │ ├── EasyChartDeisgner.cs │ │ ├── EasyChartEditor │ │ │ └── EasyChartSeriesEditor.cs │ │ ├── EasyChartEvents │ │ │ ├── EasyChartCursorEventArgs.cs │ │ │ └── EasyChartViewEventArgs.cs │ │ ├── EasyChartProperty.Designer.cs │ │ ├── EasyChartProperty.cs │ │ ├── EasyChartProperty.resx │ │ ├── EasyChartSeries.cs │ │ ├── EasyChartSeriesCollection.cs │ │ ├── Editor │ │ │ └── EasyChartLineSeriesEditor.cs │ │ ├── Set YAxis Range.Designer.cs │ │ ├── Set YAxis Range.cs │ │ └── Set YAxis Range.resx │ ├── EasyChartX │ │ ├── EasyChartX.Designer.cs │ │ ├── EasyChartX.bmp │ │ ├── EasyChartX.cs │ │ ├── EasyChartX.resx │ │ ├── EasyChartXData │ │ │ ├── DataEntity.cs │ │ │ ├── DataEntityInfo.cs │ │ │ ├── PlotBuffer.cs │ │ │ ├── PlotBufferBase.cs │ │ │ ├── ShallowPlotBuffer.cs │ │ │ ├── XDataInputType.cs │ │ │ └── XDataType.cs │ │ ├── EasyChartXDesigner.cs │ │ ├── EasyChartXEditor │ │ │ ├── EasyChartXLineSeries.cs │ │ │ ├── EasyChartXLineSeriesEditor.cs │ │ │ ├── TabCursorCollectionEditor.cs │ │ │ └── TabCursorDesignTimeCollection.cs │ │ ├── EasyChartXEvents │ │ │ ├── EasyChartXCursorEventArgs.cs │ │ │ ├── EasyChartXPlotEventArgs.cs │ │ │ ├── EasyChartXViewEventArgs.cs │ │ │ └── TabCursorEventArgs.cs │ │ ├── EasyChartXMarker │ │ │ ├── DataMarkerManager.cs │ │ │ ├── MarkerControl.cs │ │ │ └── Painter │ │ │ │ ├── CircleMarkerPainter.cs │ │ │ │ ├── CrossMarkerPainter.cs │ │ │ │ ├── DiamondMarkerPainter.cs │ │ │ │ ├── MarkerPainter.cs │ │ │ │ ├── SquareMarkerPainter.cs │ │ │ │ └── TriangleMarkerPainter.cs │ │ ├── EasyChartXPropertyForm.Designer.cs │ │ ├── EasyChartXPropertyForm.cs │ │ ├── EasyChartXPropertyForm.resx │ │ ├── EasyChartXRangeYConfigForm.Designer.cs │ │ ├── EasyChartXRangeYConfigForm.cs │ │ ├── EasyChartXRangeYConfigForm.resx │ │ ├── EasyChartXUtility │ │ │ ├── AxisSynchronizer.cs │ │ │ ├── ChartViewManager.cs │ │ │ ├── Constants.cs │ │ │ ├── DataCheckParameters.cs │ │ │ ├── DataConvertor.cs │ │ │ ├── EasyChartXAxis.cs │ │ │ ├── EasyChartXCursor.cs │ │ │ ├── EasyChartXPlotArea.cs │ │ │ ├── EasyChartXPlotAreaCollection.cs │ │ │ ├── EasyChartXSeries.cs │ │ │ ├── EasyChartXSeriesCollection.cs │ │ │ ├── EasyChartXSortDirection.cs │ │ │ ├── LayoutDirection.cs │ │ │ ├── MiscellaneousConfiguration.cs │ │ │ ├── ParallelHandler.cs │ │ │ ├── PlotManager.cs │ │ │ └── Utility.cs │ │ └── TabCursorUtility │ │ │ ├── PositionAdapter.cs │ │ │ ├── TabCursor.cs │ │ │ ├── TabCursorCollection.cs │ │ │ ├── TabCursorControl.Designer.cs │ │ │ ├── TabCursorControl.cs │ │ │ ├── TabCursorControl.resx │ │ │ ├── TabCursorInfoForm.Designer.cs │ │ │ ├── TabCursorInfoForm.cs │ │ │ └── TabCursorInfoForm.resx │ ├── GUIUtility │ │ └── ControlFactory.cs │ ├── GaugeLinear │ │ ├── GaugeLinear.bmp │ │ ├── GaugeLinear.cs │ │ └── GaugeLinear.designer.cs │ ├── IndustryLed │ │ ├── IndustryLED.Designer.cs │ │ ├── IndustryLED.bmp │ │ ├── IndustryLED.cs │ │ └── LedDesigner.cs │ ├── IndustryLedBright │ │ ├── IndustryLedBright.PNG │ │ ├── IndustryLedBright.cs │ │ ├── IndustryLedBright.designer.cs │ │ └── LedBrightDesigner.cs │ ├── IndustrySwitch │ │ ├── IndustrySwitch.Designer.cs │ │ ├── IndustrySwitch.bmp │ │ ├── IndustrySwitch.cs │ │ └── IndustySwitchDesigner.cs │ ├── JY.GUI.csproj │ ├── JYArray │ │ ├── JYArray.Designer.cs │ │ ├── JYArray.bmp │ │ ├── JYArray.cs │ │ └── JYArray.resx │ ├── KnobControl │ │ ├── KnobControl.bmp │ │ ├── KnobControl.cs │ │ ├── KnobControl.resx │ │ ├── KnobDesigner.cs │ │ ├── KnobProperty.Designer.cs │ │ ├── KnobProperty.cs │ │ └── KnobProperty.resx │ ├── LEDArray │ │ ├── LEDArray.Designer.cs │ │ ├── LEDArray.bmp │ │ ├── LEDArray.cs │ │ ├── LEDArray.resx │ │ └── LEDArrayDesigner.cs │ ├── LedArrow │ │ ├── LedArrow.bmp │ │ ├── LedArrow.cs │ │ ├── LedArrow.designer.cs │ │ └── LedArrowDesigner.cs │ ├── LedMatrixControl │ │ ├── LedMatrixControl.Designer.cs │ │ ├── LedMatrixControl.bmp │ │ ├── LedMatrixControl.cs │ │ ├── LedMatrixControl.resx │ │ └── 对应的资源必须是内嵌式的才可以在dll中进行引用.txt │ ├── PathControl │ │ ├── PathControl.bmp │ │ ├── PathControl.cs │ │ ├── PathControl.designer.cs │ │ ├── PathControl.resx │ │ └── PathControlDesigner.cs │ ├── PressureGauge │ │ ├── PressureGauge.bmp │ │ ├── PressureGauge.cs │ │ ├── PressureGauge.resx │ │ └── PressureGaugeDesigner.cs │ ├── Program.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ └── Resources.resx │ ├── Resources │ │ ├── EasyButton │ │ │ ├── Thumbs.db │ │ │ ├── back.png │ │ │ ├── calculator.png │ │ │ ├── calendar.png │ │ │ ├── cancel.png │ │ │ ├── check.png │ │ │ ├── close.png │ │ │ ├── document.png │ │ │ ├── document_add.png │ │ │ ├── document_delete.png │ │ │ ├── document_edit.png │ │ │ ├── down.png │ │ │ ├── folder.png │ │ │ ├── folder_open.png │ │ │ ├── go.png │ │ │ ├── info.png │ │ │ ├── printer.png │ │ │ ├── refresh.png │ │ │ ├── setting.png │ │ │ ├── up.png │ │ │ └── web.png │ │ ├── IndustryAquaGauge2 │ │ │ ├── Reflection.jpg │ │ │ └── Thumbs.db │ │ ├── IndustryLed │ │ │ └── ledred.bmp │ │ ├── IndustrySwitch │ │ │ ├── Thumbs.db │ │ │ ├── 垂直关.png │ │ │ ├── 垂直关1.png │ │ │ ├── 垂直开.png │ │ │ ├── 垂直开2.png │ │ │ ├── 按钮关.png │ │ │ ├── 按钮开.png │ │ │ ├── 水平关.png │ │ │ └── 水平开.png │ │ ├── LedMatrixControl │ │ │ └── LedMatrixSymbolFile.xml │ │ ├── LedMatrixSymbolFile.xml │ │ ├── Tank │ │ │ ├── JYTank.png │ │ │ └── Thumbs.db │ │ ├── locale │ │ │ ├── i18n_GUI_CN.properties │ │ │ └── i18n_GUI_EN.properties │ │ ├── 右钮.png │ │ ├── 左钮.png │ │ ├── 开关1.png │ │ ├── 开关2.png │ │ ├── 钮1.png │ │ └── 钮2.png │ ├── ScrollingText │ │ ├── JYScrollingText.resx │ │ ├── ScorollingText.bmp │ │ └── ScrollingText.cs │ ├── Segment │ │ ├── SevenSegment.Designer.cs │ │ ├── SevenSegment.bmp │ │ ├── SevenSegment.cs │ │ └── SevenSegmentDesigner.cs │ ├── SegmentBright │ │ ├── SegmentBright.bmp │ │ ├── SegmentBright.cs │ │ └── SevenSegmentBrightDesigner.cs │ ├── Slide │ │ ├── JYColorHelper.cs │ │ ├── JYDrawStyleHelper.cs │ │ ├── JYSlides.Designer.cs │ │ ├── Slide.bmp │ │ ├── Slide.cs │ │ ├── SlideDesigner.cs │ │ ├── SlideProperty.Designer.cs │ │ ├── SlideProperty.cs │ │ └── SlideProperty.resx │ ├── StripChart │ │ ├── AxisViewAdapter.cs │ │ ├── Plotter │ │ │ ├── BindStripPlotter.cs │ │ │ ├── CommonStripPlotter.cs │ │ │ ├── OverLapWrapBuffer.cs │ │ │ ├── PlotAction.cs │ │ │ └── SparseStripPlotter.cs │ │ ├── Property │ │ │ ├── AppearanceEditor.cs │ │ │ ├── LockedList.cs │ │ │ ├── StripChartApperance.cs │ │ │ └── StripChartSeries.cs │ │ ├── Set_StripChart_YAxis_Range.Designer.cs │ │ ├── Set_StripChart_YAxis_Range.cs │ │ ├── Set_StripChart_YAxis_Range.resx │ │ ├── StripChart.Designer.cs │ │ ├── StripChart.bmp │ │ ├── StripChart.cs │ │ ├── StripChart.resx │ │ ├── StripChartDeisgner.cs │ │ ├── StripChartProperty.Designer.cs │ │ ├── StripChartProperty.cs │ │ ├── StripChartProperty.resx │ │ ├── StripChartUtility │ │ │ ├── AxisViewAdapter.cs │ │ │ ├── Constants.cs │ │ │ ├── ParallelHandler.cs │ │ │ └── Utility.cs │ │ └── StripPlotter.cs │ ├── StripChartX │ │ ├── StripChartX.Designer.cs │ │ ├── StripChartX.bmp │ │ ├── StripChartX.cs │ │ ├── StripChartX.resx │ │ ├── StripChartXData │ │ │ ├── DataEntities │ │ │ │ ├── IndexDataEntity.cs │ │ │ │ ├── StringDataEntity.cs │ │ │ │ └── TimeStampDataEntity.cs │ │ │ ├── DataEntityBase.cs │ │ │ ├── DataEntityInfo.cs │ │ │ ├── OverLapWrapBuffer.cs │ │ │ ├── PlotBuffer.cs │ │ │ └── ReadOnlyBuf.cs │ │ ├── StripChartXDesigner.cs │ │ ├── StripChartXEditor │ │ │ ├── StripChartXLineSeries.cs │ │ │ ├── StripChartXLineSeriesEditor.cs │ │ │ ├── StripTabCursorCollectionEditor.cs │ │ │ └── StripTabCursorDesignTimeCollection.cs │ │ ├── StripChartXEvents │ │ │ ├── StripChartXCursorEventArgs.cs │ │ │ ├── StripChartXPlotEventArgs.cs │ │ │ ├── StripChartXViewEventArgs.cs │ │ │ └── StripTabCursorEventArgs.cs │ │ ├── StripChartXPropertyForm.Designer.cs │ │ ├── StripChartXPropertyForm.cs │ │ ├── StripChartXPropertyForm.resx │ │ ├── StripChartXRangeYConfigForm.Designer.cs │ │ ├── StripChartXRangeYConfigForm.cs │ │ ├── StripChartXRangeYConfigForm.resx │ │ ├── StripChartXUtility │ │ │ ├── AxisSynchronizer.cs │ │ │ ├── AxisViewAdapter.cs │ │ │ ├── ChartViewManager.cs │ │ │ ├── Constants.cs │ │ │ ├── DataCheckParameters.cs │ │ │ ├── DataConvertor.cs │ │ │ ├── LayoutDirection.cs │ │ │ ├── MiscellaneousConfiguration.cs │ │ │ ├── ParallelHandler.cs │ │ │ ├── PlotManager.cs │ │ │ ├── StripChartXAxis.cs │ │ │ ├── StripChartXCursor.cs │ │ │ ├── StripChartXPlotArea.cs │ │ │ ├── StripChartXPlotAreaCollection.cs │ │ │ ├── StripChartXSeries.cs │ │ │ ├── StripChartXSeriesCollection.cs │ │ │ └── Utility.cs │ │ └── StripTabCursorUtility │ │ │ ├── PositionAdapter.cs │ │ │ ├── StripTabCursor.cs │ │ │ ├── StripTabCursorCollection.cs │ │ │ ├── StripTabCursorControl.Designer.cs │ │ │ ├── StripTabCursorControl.cs │ │ │ ├── StripTabCursorControl.resx │ │ │ ├── StripTabCursorInfoForm.Designer.cs │ │ │ ├── StripTabCursorInfoForm.cs │ │ │ └── StripTabCursorInfoForm.resx │ ├── SwitchArray │ │ ├── SwitchArray.Designer.cs │ │ ├── SwitchArray.bmp │ │ ├── SwitchArray.cs │ │ ├── SwitchArray.resx │ │ └── SwitchArrayDesigner.cs │ ├── Tank │ │ ├── Tank.bmp │ │ ├── Tank.cs │ │ ├── TankDesigner.cs │ │ ├── TankProperty.Designer.cs │ │ ├── TankProperty.cs │ │ └── TankProperty.resx │ ├── Thermometer │ │ ├── Thermometer.Designer.cs │ │ ├── Thermometer.bmp │ │ ├── Thermometer.cs │ │ ├── ThermometerDesigner.cs │ │ ├── ThermometerPorperty.Designer.cs │ │ ├── ThermometerPorperty.cs │ │ └── ThermometerPorperty.resx │ ├── Utility │ │ ├── BorderSimple.cs │ │ ├── CollectionPropertyEditor.cs │ │ ├── CollectionPropertyEditorForm.Designer.cs │ │ ├── CollectionPropertyEditorForm.cs │ │ ├── CollectionPropertyEditorForm.resx │ │ ├── ColorSection.cs │ │ ├── ControlFactory.cs │ │ ├── HSLColor.cs │ │ ├── PropertiesEditorForm.Designer.cs │ │ ├── PropertiesEditorForm.cs │ │ ├── PropertiesEditorForm.resx │ │ ├── PropertyClonableClass.cs │ │ ├── PropertyClonableClassEditor.cs │ │ ├── TickMajor.cs │ │ ├── TickMinor.cs │ │ └── iColors.cs │ ├── ViewController │ │ ├── ControlElements │ │ │ └── ViewControlElement.cs │ │ ├── StateOperationDialog.Designer.cs │ │ ├── StateOperationDialog.cs │ │ ├── StateOperationDialog.resx │ │ ├── ViewController.bmp │ │ ├── ViewController.cs │ │ ├── ViewController.resx │ │ ├── ViewControllerDesigner.cs │ │ ├── ViewControllerDialog.Designer.cs │ │ ├── ViewControllerDialog.cs │ │ └── ViewControllerDialog.resx │ └── jytek.ico ├── JY.Graph3D │ ├── JY.Graph3D.csproj │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Resource │ │ ├── ILNumerics.Drawing.dll │ │ ├── ILNumerics.Net.dll │ │ └── OpenTK.dll │ └── SurfaceGraph │ │ ├── SGDesigner.cs │ │ ├── SurfaceGraph.Designer.cs │ │ ├── SurfaceGraph.bmp │ │ ├── SurfaceGraph.cs │ │ ├── SurfaceGraph.png │ │ ├── SurfaceGraph.resx │ │ └── ViewPoint.cs ├── JY.Localization │ ├── JY.Localization.cs │ ├── JY.Localization.csproj │ └── Properties │ │ └── AssemblyInfo.cs ├── JY.Mathematics │ ├── ArrayArithmetic │ │ ├── ArrayArithmetic.cs │ │ └── ArrayArithmeticProvider.cs │ ├── ArrayOperation │ │ ├── ArrayOperation.cs │ │ └── ArrayOperationProvider.cs │ ├── Calculus │ │ ├── Calculus.cs │ │ └── CalculusProvider.cs │ ├── Fitting │ │ ├── Fitting.cs │ │ └── FittingProvider.cs │ ├── Interfaces │ │ ├── IArrayArithmetic.cs │ │ ├── IArrayOperation.cs │ │ ├── ICalculus.cs │ │ ├── IFitting.cs │ │ ├── IInterpolation.cs │ │ ├── ILinearAlgebra.cs │ │ └── IStatistics.cs │ ├── Interpolation │ │ ├── Interpolation.cs │ │ └── InterpolationProvider.cs │ ├── JY.Mathematics.csproj │ ├── LinearAlgebra │ │ ├── LinearAlgebra.cs │ │ └── LinearAlgebraProvider.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Provider │ │ ├── Engine.cs │ │ ├── IPP │ │ │ ├── IPPNative.cs │ │ │ └── ProviderIPP.cs │ │ └── MKL │ │ │ ├── MKLNative.cs │ │ │ └── ProviderMKL.cs │ └── Statistics │ │ ├── Statistics.cs │ │ └── StatisticsProvider.cs ├── JY.Queue │ ├── CircularQueue.cs │ ├── Common │ │ ├── ParallelHandler.cs │ │ └── i18n │ │ │ ├── I18nEntity.cs │ │ │ └── I18nLocalWrapper.cs │ ├── JY.ThreadSafeQueue.csproj │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Resources │ │ └── locale │ │ │ ├── i18n_Queue_CN.properties │ │ │ └── i18n_Queue_EN.properties │ └── TheadSafeQueue.cs ├── JY.Report │ ├── ExcelReport.cs │ ├── JY.Report.csproj │ ├── Log │ │ ├── DirectoryLog.cs │ │ ├── FileLogBase.cs │ │ ├── ILogger.cs │ │ ├── LogBase.cs │ │ └── SingleFileLog.cs │ ├── Logger.cs │ ├── LoggerConfig.cs │ ├── LoggerEnum.cs │ ├── Parameters │ │ ├── Enum.cs │ │ ├── ErrorHandler.cs │ │ └── Styles.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── HResultLUT.bin │ │ ├── Resources.Designer.cs │ │ └── Resources.resx │ ├── SeeSharpTools.JY.Report.cd │ └── WordReport.cs ├── JY.Sensors │ ├── CustomScaling │ │ └── CustomScaling.cs │ ├── Displacement sensor │ │ └── DisplacementSensor.cs │ ├── JY.Sensors.csproj │ ├── LoadCell │ │ └── LoadCell.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── RTD │ │ ├── Interpolation.cs │ │ ├── RTD.cs │ │ └── RTDValueConvertor.cs │ ├── SeeSharpTools.JY.Sensors.cd │ ├── Thermistor │ │ └── Thermistor.cs │ └── Thermocouple │ │ ├── TC_TypeB.cs │ │ ├── TC_TypeE.cs │ │ ├── TC_TypeJ.cs │ │ ├── TC_TypeK.cs │ │ ├── TC_TypeN.cs │ │ ├── TC_TypeR.cs │ │ ├── TC_TypeS.cs │ │ ├── TC_TypeT.cs │ │ └── Thermocouple.cs ├── JY.Statistics │ ├── Engine.cs │ ├── IPPLibraries │ │ ├── Arithmetics.cs │ │ ├── ArrayOperation.cs │ │ ├── Exponential.cs │ │ ├── Generation.cs │ │ ├── Power.cs │ │ ├── Rounding.cs │ │ └── Statistics.cs │ ├── JY.Statistics.csproj │ ├── JY.Statistics.csproj.user │ ├── NativeDLLs │ │ ├── ia32 │ │ │ ├── ippcore.dll │ │ │ ├── ipps.dll │ │ │ ├── ippvm.dll │ │ │ └── ippvmg9.dll │ │ └── intel64 │ │ │ ├── ippcore.dll │ │ │ ├── ipps.dll │ │ │ └── ippvm.dll │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Statistics.cs │ └── ippImport │ │ ├── Enum.cs │ │ ├── ippNativeX64.cs │ │ └── ippNativeX86.cs ├── JY.TCP │ ├── Common │ │ ├── CircularBuffer.cs │ │ ├── Enum.cs │ │ ├── IBuffer.cs │ │ ├── StringBuffer.cs │ │ ├── TCPClient.cs │ │ └── TCPServer.cs │ ├── JY.TCP.csproj │ ├── Properties │ │ └── AssemblyInfo.cs │ └── Source │ │ ├── JYTCPClient.cs │ │ └── JYTCPServer.cs ├── ReleaseNotes.txt ├── SeeSharpTools Installer │ └── Resources │ │ ├── AudioLibrary.dll │ │ ├── DSPMatlab.dll │ │ ├── DSPMatlab_X64.dll │ │ ├── DSPMatlab_X86.dll │ │ ├── FindPeaksAndValleysMatlab.dll │ │ ├── ILNumerics.Drawing.dll │ │ ├── ILNumerics.Net.dll │ │ ├── JYSpectrumCore.dll │ │ ├── MWArray.dll │ │ ├── ManagedAudioLibrary.dll │ │ ├── MathNet.Filtering.dll │ │ ├── MathNet.Numerics.dll │ │ ├── OpenTK.dll │ │ ├── SeeSharpTools User Manual_1.4.4.pdf │ │ ├── System.Windows.Forms.DataVisualization.dll │ │ └── libiomp5md.dll └── SeeSharpTools.sln └── media └── jytek_controls.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/README.md -------------------------------------------------------------------------------- /SeeSharpTools/JY.ArrayUtility/ArrayCalculation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.ArrayUtility/ArrayCalculation.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.ArrayUtility/ArrayManipulation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.ArrayUtility/ArrayManipulation.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.ArrayUtility/JY.ArrayUtility.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.ArrayUtility/JY.ArrayUtility.csproj -------------------------------------------------------------------------------- /SeeSharpTools/JY.ArrayUtility/JY.ArrayUtility.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.ArrayUtility/JY.ArrayUtility.csproj.user -------------------------------------------------------------------------------- /SeeSharpTools/JY.ArrayUtility/MajorOrder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.ArrayUtility/MajorOrder.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.ArrayUtility/ParallelCalculation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.ArrayUtility/ParallelCalculation.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.ArrayUtility/ParallelManipulation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.ArrayUtility/ParallelManipulation.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.ArrayUtility/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.ArrayUtility/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.Audio/Analyzer/AnalyzerBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.Audio/Analyzer/AnalyzerBase.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.Audio/Analyzer/DualToneAnalyzer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.Audio/Analyzer/DualToneAnalyzer.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.Audio/Analyzer/LogChirpAnalyzer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.Audio/Analyzer/LogChirpAnalyzer.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.Audio/Analyzer/MismatchAnalyzer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.Audio/Analyzer/MismatchAnalyzer.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.Audio/Analyzer/MultiToneAnalyzer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.Audio/Analyzer/MultiToneAnalyzer.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.Audio/Analyzer/SingleToneAnalyzer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.Audio/Analyzer/SingleToneAnalyzer.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.Audio/Analyzer/SteppedLevelSineAnalyzer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.Audio/Analyzer/SteppedLevelSineAnalyzer.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.Audio/Analyzer/SteppedSineCrosstalkAnalyzer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.Audio/Analyzer/SteppedSineCrosstalkAnalyzer.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.Audio/Analyzer/TimeDomainEstimate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.Audio/Analyzer/TimeDomainEstimate.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.Audio/AudioAnalyzer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.Audio/AudioAnalyzer.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.Audio/AudioGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.Audio/AudioGenerator.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.Audio/Common/ArrayGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.Audio/Common/ArrayGroup.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.Audio/Common/ArrayPair.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.Audio/Common/ArrayPair.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.Audio/Common/AudioErrorCode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.Audio/Common/AudioErrorCode.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.Audio/Common/SeeSharpAudioErrorCode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.Audio/Common/SeeSharpAudioErrorCode.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.Audio/Common/SeeSharpAudioException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.Audio/Common/SeeSharpAudioException.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.Audio/Common/i18n/I18nEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.Audio/Common/i18n/I18nEntity.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.Audio/Common/i18n/I18nLocalWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.Audio/Common/i18n/I18nLocalWrapper.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.Audio/Equilizer/EqualizerBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.Audio/Equilizer/EqualizerBase.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.Audio/Equilizer/SteppedSineEqualizer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.Audio/Equilizer/SteppedSineEqualizer.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.Audio/JY.Audio.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.Audio/JY.Audio.csproj -------------------------------------------------------------------------------- /SeeSharpTools/JY.Audio/MultiWaveData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.Audio/MultiWaveData.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.Audio/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.Audio/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.Audio/Resources/locale/i18n_Audio_CN.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.Audio/Resources/locale/i18n_Audio_CN.properties -------------------------------------------------------------------------------- /SeeSharpTools/JY.Audio/Resources/locale/i18n_Audio_EN.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.Audio/Resources/locale/i18n_Audio_EN.properties -------------------------------------------------------------------------------- /SeeSharpTools/JY.Audio/WaveData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.Audio/WaveData.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.Audio/Waveform/DualToneWaveform.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.Audio/Waveform/DualToneWaveform.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.Audio/Waveform/LogChirpWaveform.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.Audio/Waveform/LogChirpWaveform.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.Audio/Waveform/MultiToneWaveform.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.Audio/Waveform/MultiToneWaveform.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.Audio/Waveform/SingleToneWaveform.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.Audio/Waveform/SingleToneWaveform.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.Audio/Waveform/SteppedLevelSineWaveform.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.Audio/Waveform/SteppedLevelSineWaveform.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.Audio/Waveform/SteppedSineWaveform.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.Audio/Waveform/SteppedSineWaveform.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.Audio/Waveform/WaveformBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.Audio/Waveform/WaveformBase.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.DSP.FilteringMCR/JY.DSP.FilteringMCR.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.DSP.FilteringMCR/JY.DSP.FilteringMCR.csproj -------------------------------------------------------------------------------- /SeeSharpTools/JY.DSP.FilteringMCR/JYFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.DSP.FilteringMCR/JYFilter.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.DSP.FilteringMCR/JYSpectrum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.DSP.FilteringMCR/JYSpectrum.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.DSP.FilteringMCR/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.DSP.FilteringMCR/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.DSP.FilteringMCR/Source/DSPMatlab.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.DSP.FilteringMCR/Source/DSPMatlab.dll -------------------------------------------------------------------------------- /SeeSharpTools/JY.DSP.FilteringMCR/Source/DSPMatlab.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.DSP.FilteringMCR/Source/DSPMatlab.xml -------------------------------------------------------------------------------- /SeeSharpTools/JY.DSP.FilteringMCR/Source/DSPMatlab_X64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.DSP.FilteringMCR/Source/DSPMatlab_X64.dll -------------------------------------------------------------------------------- /SeeSharpTools/JY.DSP.FilteringMCR/Source/DSPMatlab_X64.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.DSP.FilteringMCR/Source/DSPMatlab_X64.xml -------------------------------------------------------------------------------- /SeeSharpTools/JY.DSP.FilteringMCR/Source/DSPMatlab_X86.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.DSP.FilteringMCR/Source/DSPMatlab_X86.dll -------------------------------------------------------------------------------- /SeeSharpTools/JY.DSP.FilteringMCR/Source/DSPMatlab_X86.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.DSP.FilteringMCR/Source/DSPMatlab_X86.xml -------------------------------------------------------------------------------- /SeeSharpTools/JY.DSP.FilteringMCR/Source/MWArray.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.DSP.FilteringMCR/Source/MWArray.dll -------------------------------------------------------------------------------- /SeeSharpTools/JY.DSP.FilteringMCR/Source/MWArray.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.DSP.FilteringMCR/Source/MWArray.xml -------------------------------------------------------------------------------- /SeeSharpTools/JY.DSP.Fundamental/Exception/JYDSPException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.DSP.Fundamental/Exception/JYDSPException.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.DSP.Fundamental/Generation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.DSP.Fundamental/Generation.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.DSP.Fundamental/JY.DSP.Fundamental.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.DSP.Fundamental/JY.DSP.Fundamental.csproj -------------------------------------------------------------------------------- /SeeSharpTools/JY.DSP.Fundamental/MKLImport/CBLASNative.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.DSP.Fundamental/MKLImport/CBLASNative.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.DSP.Fundamental/MKLImport/DFTINative.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.DSP.Fundamental/MKLImport/DFTINative.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.DSP.Fundamental/MKLImport/Dfti.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.DSP.Fundamental/MKLImport/Dfti.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.DSP.Fundamental/MKLImport/VMLNative.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.DSP.Fundamental/MKLImport/VMLNative.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.DSP.Fundamental/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.DSP.Fundamental/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.DSP.Fundamental/Spectrum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.DSP.Fundamental/Spectrum.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.DSP.Fundamental/SpectrumAux/BasicFFT.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.DSP.Fundamental/SpectrumAux/BasicFFT.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.DSP.Fundamental/SpectrumAux/DFTIDescMgr.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.DSP.Fundamental/SpectrumAux/DFTIDescMgr.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.DSP.Fundamental/SpectrumAux/Definitions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.DSP.Fundamental/SpectrumAux/Definitions.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.DSP.Fundamental/SpectrumAux/Window.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.DSP.Fundamental/SpectrumAux/Window.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.DSP.SoundVibration/HarmonicAnalyzer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.DSP.SoundVibration/HarmonicAnalyzer.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.DSP.SoundVibration/JY.DSP.SoundVibration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.DSP.SoundVibration/JY.DSP.SoundVibration.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.DSP.SoundVibration/JY.DSP.SoundVibration.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.DSP.SoundVibration/JY.DSP.SoundVibration.csproj -------------------------------------------------------------------------------- /SeeSharpTools/JY.DSP.SoundVibration/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.DSP.SoundVibration/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.DSP.Utility.Fundamental/JY.DSP.Utility.Fundamental.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.DSP.Utility.Fundamental/JY.DSP.Utility.Fundamental.csproj -------------------------------------------------------------------------------- /SeeSharpTools/JY.DSP.Utility.Fundamental/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.DSP.Utility.Fundamental/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.DSP.Utility.Fundamental/Resources/Definitions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.DSP.Utility.Fundamental/Resources/Definitions.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.DSP.Utility.Fundamental/Resources/JYDSPException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.DSP.Utility.Fundamental/Resources/JYDSPException.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.DSP.Utility.Fundamental/Resources/MathNet.Numerics.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.DSP.Utility.Fundamental/Resources/MathNet.Numerics.dll -------------------------------------------------------------------------------- /SeeSharpTools/JY.DSP.Utility.Fundamental/Resources/MathNet.Numerics.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.DSP.Utility.Fundamental/Resources/MathNet.Numerics.xml -------------------------------------------------------------------------------- /SeeSharpTools/JY.DSP.Utility.Fundamental/Resources/Window.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.DSP.Utility.Fundamental/Resources/Window.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.DSP.Utility.Fundamental/Spectrum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.DSP.Utility.Fundamental/Spectrum.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.DSP.Utility/HarmonicAnalysis.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.DSP.Utility/HarmonicAnalysis.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.DSP.Utility/JY.DSP.Utility.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.DSP.Utility/JY.DSP.Utility.csproj -------------------------------------------------------------------------------- /SeeSharpTools/JY.DSP.Utility/MedianFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.DSP.Utility/MedianFilter.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.DSP.Utility/PeakValleyAnalysis.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.DSP.Utility/PeakValleyAnalysis.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.DSP.Utility/PhaseAnalizer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.DSP.Utility/PhaseAnalizer.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.DSP.Utility/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.DSP.Utility/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.DSP.Utility/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.DSP.Utility/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.DSP.Utility/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.DSP.Utility/Properties/Resources.resx -------------------------------------------------------------------------------- /SeeSharpTools/JY.DSP.Utility/Resources/Coefficient.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.DSP.Utility/Resources/Coefficient.txt -------------------------------------------------------------------------------- /SeeSharpTools/JY.DSP.Utility/SignalProcessing.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.DSP.Utility/SignalProcessing.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.DSP.Utility/SquarewaveMeasurements.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.DSP.Utility/SquarewaveMeasurements.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.DSP.Utility/Synchronizer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.DSP.Utility/Synchronizer.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.DSP.Utility/SystemNoiseCalculation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.DSP.Utility/SystemNoiseCalculation.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.DSP.Utility/ToneAnalyzer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.DSP.Utility/ToneAnalyzer.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.DSP.UtilityTests/JY.DSP.UtilityTests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.DSP.UtilityTests/JY.DSP.UtilityTests.csproj -------------------------------------------------------------------------------- /SeeSharpTools/JY.DSP.UtilityTests/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.DSP.UtilityTests/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.DSP.UtilityTests/ToneAnalysisTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.DSP.UtilityTests/ToneAnalysisTests.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.Database/DbOperation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.Database/DbOperation.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.Database/JY.Database.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.Database/JY.Database.csproj -------------------------------------------------------------------------------- /SeeSharpTools/JY.Database/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.Database/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.File/Common/Constants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.File/Common/Constants.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.File/Common/SeeSharpFileErrorCode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.File/Common/SeeSharpFileErrorCode.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.File/Common/SeeSharpFileException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.File/Common/SeeSharpFileException.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.File/Common/i18n/I18nEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.File/Common/i18n/I18nEntity.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.File/Common/i18n/I18nLocalWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.File/Common/i18n/I18nLocalWrapper.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.File/Convertor/DoubleConvertor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.File/Convertor/DoubleConvertor.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.File/Convertor/FloatConvertor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.File/Convertor/FloatConvertor.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.File/Convertor/IConvertor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.File/Convertor/IConvertor.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.File/Convertor/IntConvertor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.File/Convertor/IntConvertor.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.File/Convertor/ShortConvertor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.File/Convertor/ShortConvertor.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.File/Convertor/StringConvertor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.File/Convertor/StringConvertor.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.File/Convertor/UIntConvertor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.File/Convertor/UIntConvertor.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.File/Convertor/UShortConvertor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.File/Convertor/UShortConvertor.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.File/File/AnalogWaveformFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.File/File/AnalogWaveformFile.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.File/File/BinHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.File/File/BinHandler.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.File/File/CsvHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.File/File/CsvHandler.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.File/File/FileUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.File/File/FileUtil.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.File/File/IniFileParser/FileIniParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.File/File/IniFileParser/FileIniParser.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.File/File/IniFileParser/Model/Configuration/ConcatenateDuplicatedKeysIniParserConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.File/File/IniFileParser/Model/Configuration/ConcatenateDuplicatedKeysIniParserConfiguration.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.File/File/IniFileParser/Model/Configuration/IniParserConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.File/File/IniFileParser/Model/Configuration/IniParserConfiguration.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.File/File/IniFileParser/Model/Formatting/DefaultIniDataFormatter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.File/File/IniFileParser/Model/Formatting/DefaultIniDataFormatter.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.File/File/IniFileParser/Model/Formatting/IIniDataFormatter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.File/File/IniFileParser/Model/Formatting/IIniDataFormatter.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.File/File/IniFileParser/Model/IniData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.File/File/IniFileParser/Model/IniData.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.File/File/IniFileParser/Model/IniDataCaseInsensitive.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.File/File/IniFileParser/Model/IniDataCaseInsensitive.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.File/File/IniFileParser/Model/KeyData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.File/File/IniFileParser/Model/KeyData.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.File/File/IniFileParser/Model/KeyDataCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.File/File/IniFileParser/Model/KeyDataCollection.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.File/File/IniFileParser/Model/SectionData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.File/File/IniFileParser/Model/SectionData.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.File/File/IniFileParser/Model/SectionDataCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.File/File/IniFileParser/Model/SectionDataCollection.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.File/File/IniFileParser/Parser/ConcatenateDuplicatedKeysIniDataParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.File/File/IniFileParser/Parser/ConcatenateDuplicatedKeysIniDataParser.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.File/File/IniFileParser/Parser/IniDataParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.File/File/IniFileParser/Parser/IniDataParser.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.File/File/IniFileParser/StreamIniDataParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.File/File/IniFileParser/StreamIniDataParser.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.File/File/IniFileParser/StringIniParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.File/File/IniFileParser/StringIniParser.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.File/File/IniHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.File/File/IniHandler.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.File/File/MajorOrder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.File/File/MajorOrder.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.File/JY.File.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.File/JY.File.csproj -------------------------------------------------------------------------------- /SeeSharpTools/JY.File/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.File/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.File/Resources/locale/i18n_File_CN.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.File/Resources/locale/i18n_File_CN.properties -------------------------------------------------------------------------------- /SeeSharpTools/JY.File/Resources/locale/i18n_File_EN.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.File/Resources/locale/i18n_File_EN.properties -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/AquaGauge/AquaGauge.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/AquaGauge/AquaGauge.Designer.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/AquaGauge/AquaGauge.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/AquaGauge/AquaGauge.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/AquaGauge/AquaGauge.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/AquaGauge/AquaGauge.resx -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/AquaGauge/AquaGaugeDesigner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/AquaGauge/AquaGaugeDesigner.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/AquaGauge/Industry1AquaGauge.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/AquaGauge/Industry1AquaGauge.PNG -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/ButtonSwitch/ButtonSwitch.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/ButtonSwitch/ButtonSwitch.PNG -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/ButtonSwitch/ButtonSwitch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/ButtonSwitch/ButtonSwitch.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/ButtonSwitch/ButtonSwitchDesigner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/ButtonSwitch/ButtonSwitchDesigner.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/ButtonSwitch/GraphicsExtensionMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/ButtonSwitch/GraphicsExtensionMethods.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/ButtonSwitch/ImageHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/ButtonSwitch/ImageHelper.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/ButtonSwitch/Renderers/ToggleSwitchAndroidRenderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/ButtonSwitch/Renderers/ToggleSwitchAndroidRenderer.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/ButtonSwitch/Renderers/ToggleSwitchBrushedMetalRenderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/ButtonSwitch/Renderers/ToggleSwitchBrushedMetalRenderer.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/ButtonSwitch/Renderers/ToggleSwitchCarbonRenderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/ButtonSwitch/Renderers/ToggleSwitchCarbonRenderer.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/ButtonSwitch/Renderers/ToggleSwitchFancyRenderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/ButtonSwitch/Renderers/ToggleSwitchFancyRenderer.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/ButtonSwitch/Renderers/ToggleSwitchIOS5Renderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/ButtonSwitch/Renderers/ToggleSwitchIOS5Renderer.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/ButtonSwitch/Renderers/ToggleSwitchIphoneRenderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/ButtonSwitch/Renderers/ToggleSwitchIphoneRenderer.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/ButtonSwitch/Renderers/ToggleSwitchMetroRenderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/ButtonSwitch/Renderers/ToggleSwitchMetroRenderer.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/ButtonSwitch/Renderers/ToggleSwitchModernRenderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/ButtonSwitch/Renderers/ToggleSwitchModernRenderer.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/ButtonSwitch/Renderers/ToggleSwitchOSXRenderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/ButtonSwitch/Renderers/ToggleSwitchOSXRenderer.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/ButtonSwitch/Renderers/ToggleSwitchRendererBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/ButtonSwitch/Renderers/ToggleSwitchRendererBase.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/ButtonSwitchArray/ButtonSwitchArray.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/ButtonSwitchArray/ButtonSwitchArray.Designer.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/ButtonSwitchArray/ButtonSwitchArray.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/ButtonSwitchArray/ButtonSwitchArray.bmp -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/ButtonSwitchArray/ButtonSwitchArray.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/ButtonSwitchArray/ButtonSwitchArray.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/ButtonSwitchArray/ButtonSwitchArray.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/ButtonSwitchArray/ButtonSwitchArray.resx -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/ButtonSwitchArray/ButtonSwitchArrayDesigner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/ButtonSwitchArray/ButtonSwitchArrayDesigner.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/ButtonSwitchArray/menu.saveimg.savepath20181113143907.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/ButtonSwitchArray/menu.saveimg.savepath20181113143907.bmp -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/Common/DataMarkerType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/Common/DataMarkerType.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/Common/MajorOrder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/Common/MajorOrder.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/Common/i18n/I18nEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/Common/i18n/I18nEntity.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/Common/i18n/I18nLocalWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/Common/i18n/I18nLocalWrapper.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/EasyButton/EasyButton.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/EasyButton/EasyButton.PNG -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/EasyButton/EasyButton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/EasyButton/EasyButton.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/EasyButton/EasyButton.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/EasyButton/EasyButton.designer.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/EasyButton/EasyButton.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/EasyButton/EasyButton.resx -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/EasyButton/EasyButtonProperty.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/EasyButton/EasyButtonProperty.Designer.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/EasyButton/EasyButtonProperty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/EasyButton/EasyButtonProperty.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/EasyButton/EasyButtonProperty.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/EasyButton/EasyButtonProperty.resx -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/EasyButton/EasyButtunDesigner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/EasyButton/EasyButtunDesigner.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/EasyChart/EasyChart.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/EasyChart/EasyChart.Designer.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/EasyChart/EasyChart.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/EasyChart/EasyChart.bmp -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/EasyChart/EasyChart.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/EasyChart/EasyChart.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/EasyChart/EasyChart.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/EasyChart/EasyChart.resx -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/EasyChart/EasyChartAxis.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/EasyChart/EasyChartAxis.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/EasyChart/EasyChartComponents/DataEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/EasyChart/EasyChartComponents/DataEntity.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/EasyChart/EasyChartComponents/SeriesCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/EasyChart/EasyChartComponents/SeriesCollection.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/EasyChart/EasyChartComponents/XDataInputType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/EasyChart/EasyChartComponents/XDataInputType.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/EasyChart/EasyChartCursor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/EasyChart/EasyChartCursor.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/EasyChart/EasyChartDeisgner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/EasyChart/EasyChartDeisgner.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/EasyChart/EasyChartEditor/EasyChartSeriesEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/EasyChart/EasyChartEditor/EasyChartSeriesEditor.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/EasyChart/EasyChartEvents/EasyChartCursorEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/EasyChart/EasyChartEvents/EasyChartCursorEventArgs.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/EasyChart/EasyChartEvents/EasyChartViewEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/EasyChart/EasyChartEvents/EasyChartViewEventArgs.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/EasyChart/EasyChartProperty.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/EasyChart/EasyChartProperty.Designer.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/EasyChart/EasyChartProperty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/EasyChart/EasyChartProperty.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/EasyChart/EasyChartProperty.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/EasyChart/EasyChartProperty.resx -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/EasyChart/EasyChartSeries.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/EasyChart/EasyChartSeries.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/EasyChart/EasyChartSeriesCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/EasyChart/EasyChartSeriesCollection.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/EasyChart/Editor/EasyChartLineSeriesEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/EasyChart/Editor/EasyChartLineSeriesEditor.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/EasyChart/Set YAxis Range.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/EasyChart/Set YAxis Range.Designer.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/EasyChart/Set YAxis Range.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/EasyChart/Set YAxis Range.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/EasyChart/Set YAxis Range.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/EasyChart/Set YAxis Range.resx -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/EasyChartX/EasyChartX.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/EasyChartX/EasyChartX.Designer.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/EasyChartX/EasyChartX.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/EasyChartX/EasyChartX.bmp -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/EasyChartX/EasyChartX.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/EasyChartX/EasyChartX.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/EasyChartX/EasyChartX.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/EasyChartX/EasyChartX.resx -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/EasyChartX/EasyChartXData/DataEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/EasyChartX/EasyChartXData/DataEntity.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/EasyChartX/EasyChartXData/DataEntityInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/EasyChartX/EasyChartXData/DataEntityInfo.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/EasyChartX/EasyChartXData/PlotBuffer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/EasyChartX/EasyChartXData/PlotBuffer.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/EasyChartX/EasyChartXData/PlotBufferBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/EasyChartX/EasyChartXData/PlotBufferBase.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/EasyChartX/EasyChartXData/ShallowPlotBuffer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/EasyChartX/EasyChartXData/ShallowPlotBuffer.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/EasyChartX/EasyChartXData/XDataInputType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/EasyChartX/EasyChartXData/XDataInputType.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/EasyChartX/EasyChartXData/XDataType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/EasyChartX/EasyChartXData/XDataType.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/EasyChartX/EasyChartXDesigner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/EasyChartX/EasyChartXDesigner.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/EasyChartX/EasyChartXEditor/EasyChartXLineSeries.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/EasyChartX/EasyChartXEditor/EasyChartXLineSeries.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/EasyChartX/EasyChartXEditor/EasyChartXLineSeriesEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/EasyChartX/EasyChartXEditor/EasyChartXLineSeriesEditor.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/EasyChartX/EasyChartXEditor/TabCursorCollectionEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/EasyChartX/EasyChartXEditor/TabCursorCollectionEditor.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/EasyChartX/EasyChartXEditor/TabCursorDesignTimeCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/EasyChartX/EasyChartXEditor/TabCursorDesignTimeCollection.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/EasyChartX/EasyChartXEvents/EasyChartXCursorEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/EasyChartX/EasyChartXEvents/EasyChartXCursorEventArgs.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/EasyChartX/EasyChartXEvents/EasyChartXPlotEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/EasyChartX/EasyChartXEvents/EasyChartXPlotEventArgs.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/EasyChartX/EasyChartXEvents/EasyChartXViewEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/EasyChartX/EasyChartXEvents/EasyChartXViewEventArgs.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/EasyChartX/EasyChartXEvents/TabCursorEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/EasyChartX/EasyChartXEvents/TabCursorEventArgs.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/EasyChartX/EasyChartXMarker/DataMarkerManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/EasyChartX/EasyChartXMarker/DataMarkerManager.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/EasyChartX/EasyChartXMarker/MarkerControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/EasyChartX/EasyChartXMarker/MarkerControl.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/EasyChartX/EasyChartXMarker/Painter/CircleMarkerPainter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/EasyChartX/EasyChartXMarker/Painter/CircleMarkerPainter.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/EasyChartX/EasyChartXMarker/Painter/CrossMarkerPainter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/EasyChartX/EasyChartXMarker/Painter/CrossMarkerPainter.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/EasyChartX/EasyChartXMarker/Painter/DiamondMarkerPainter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/EasyChartX/EasyChartXMarker/Painter/DiamondMarkerPainter.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/EasyChartX/EasyChartXMarker/Painter/MarkerPainter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/EasyChartX/EasyChartXMarker/Painter/MarkerPainter.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/EasyChartX/EasyChartXMarker/Painter/SquareMarkerPainter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/EasyChartX/EasyChartXMarker/Painter/SquareMarkerPainter.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/EasyChartX/EasyChartXMarker/Painter/TriangleMarkerPainter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/EasyChartX/EasyChartXMarker/Painter/TriangleMarkerPainter.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/EasyChartX/EasyChartXPropertyForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/EasyChartX/EasyChartXPropertyForm.Designer.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/EasyChartX/EasyChartXPropertyForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/EasyChartX/EasyChartXPropertyForm.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/EasyChartX/EasyChartXPropertyForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/EasyChartX/EasyChartXPropertyForm.resx -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/EasyChartX/EasyChartXRangeYConfigForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/EasyChartX/EasyChartXRangeYConfigForm.Designer.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/EasyChartX/EasyChartXRangeYConfigForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/EasyChartX/EasyChartXRangeYConfigForm.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/EasyChartX/EasyChartXRangeYConfigForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/EasyChartX/EasyChartXRangeYConfigForm.resx -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/EasyChartX/EasyChartXUtility/AxisSynchronizer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/EasyChartX/EasyChartXUtility/AxisSynchronizer.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/EasyChartX/EasyChartXUtility/ChartViewManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/EasyChartX/EasyChartXUtility/ChartViewManager.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/EasyChartX/EasyChartXUtility/Constants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/EasyChartX/EasyChartXUtility/Constants.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/EasyChartX/EasyChartXUtility/DataCheckParameters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/EasyChartX/EasyChartXUtility/DataCheckParameters.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/EasyChartX/EasyChartXUtility/DataConvertor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/EasyChartX/EasyChartXUtility/DataConvertor.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/EasyChartX/EasyChartXUtility/EasyChartXAxis.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/EasyChartX/EasyChartXUtility/EasyChartXAxis.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/EasyChartX/EasyChartXUtility/EasyChartXCursor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/EasyChartX/EasyChartXUtility/EasyChartXCursor.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/EasyChartX/EasyChartXUtility/EasyChartXPlotArea.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/EasyChartX/EasyChartXUtility/EasyChartXPlotArea.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/EasyChartX/EasyChartXUtility/EasyChartXPlotAreaCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/EasyChartX/EasyChartXUtility/EasyChartXPlotAreaCollection.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/EasyChartX/EasyChartXUtility/EasyChartXSeries.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/EasyChartX/EasyChartXUtility/EasyChartXSeries.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/EasyChartX/EasyChartXUtility/EasyChartXSeriesCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/EasyChartX/EasyChartXUtility/EasyChartXSeriesCollection.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/EasyChartX/EasyChartXUtility/EasyChartXSortDirection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/EasyChartX/EasyChartXUtility/EasyChartXSortDirection.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/EasyChartX/EasyChartXUtility/LayoutDirection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/EasyChartX/EasyChartXUtility/LayoutDirection.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/EasyChartX/EasyChartXUtility/MiscellaneousConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/EasyChartX/EasyChartXUtility/MiscellaneousConfiguration.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/EasyChartX/EasyChartXUtility/ParallelHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/EasyChartX/EasyChartXUtility/ParallelHandler.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/EasyChartX/EasyChartXUtility/PlotManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/EasyChartX/EasyChartXUtility/PlotManager.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/EasyChartX/EasyChartXUtility/Utility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/EasyChartX/EasyChartXUtility/Utility.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/EasyChartX/TabCursorUtility/PositionAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/EasyChartX/TabCursorUtility/PositionAdapter.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/EasyChartX/TabCursorUtility/TabCursor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/EasyChartX/TabCursorUtility/TabCursor.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/EasyChartX/TabCursorUtility/TabCursorCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/EasyChartX/TabCursorUtility/TabCursorCollection.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/EasyChartX/TabCursorUtility/TabCursorControl.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/EasyChartX/TabCursorUtility/TabCursorControl.Designer.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/EasyChartX/TabCursorUtility/TabCursorControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/EasyChartX/TabCursorUtility/TabCursorControl.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/EasyChartX/TabCursorUtility/TabCursorControl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/EasyChartX/TabCursorUtility/TabCursorControl.resx -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/EasyChartX/TabCursorUtility/TabCursorInfoForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/EasyChartX/TabCursorUtility/TabCursorInfoForm.Designer.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/EasyChartX/TabCursorUtility/TabCursorInfoForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/EasyChartX/TabCursorUtility/TabCursorInfoForm.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/EasyChartX/TabCursorUtility/TabCursorInfoForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/EasyChartX/TabCursorUtility/TabCursorInfoForm.resx -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/GUIUtility/ControlFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/GUIUtility/ControlFactory.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/GaugeLinear/GaugeLinear.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/GaugeLinear/GaugeLinear.bmp -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/GaugeLinear/GaugeLinear.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/GaugeLinear/GaugeLinear.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/GaugeLinear/GaugeLinear.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/GaugeLinear/GaugeLinear.designer.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/IndustryLed/IndustryLED.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/IndustryLed/IndustryLED.Designer.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/IndustryLed/IndustryLED.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/IndustryLed/IndustryLED.bmp -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/IndustryLed/IndustryLED.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/IndustryLed/IndustryLED.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/IndustryLed/LedDesigner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/IndustryLed/LedDesigner.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/IndustryLedBright/IndustryLedBright.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/IndustryLedBright/IndustryLedBright.PNG -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/IndustryLedBright/IndustryLedBright.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/IndustryLedBright/IndustryLedBright.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/IndustryLedBright/IndustryLedBright.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/IndustryLedBright/IndustryLedBright.designer.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/IndustryLedBright/LedBrightDesigner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/IndustryLedBright/LedBrightDesigner.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/IndustrySwitch/IndustrySwitch.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/IndustrySwitch/IndustrySwitch.Designer.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/IndustrySwitch/IndustrySwitch.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/IndustrySwitch/IndustrySwitch.bmp -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/IndustrySwitch/IndustrySwitch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/IndustrySwitch/IndustrySwitch.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/IndustrySwitch/IndustySwitchDesigner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/IndustrySwitch/IndustySwitchDesigner.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/JY.GUI.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/JY.GUI.csproj -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/JYArray/JYArray.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/JYArray/JYArray.Designer.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/JYArray/JYArray.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/JYArray/JYArray.bmp -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/JYArray/JYArray.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/JYArray/JYArray.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/JYArray/JYArray.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/JYArray/JYArray.resx -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/KnobControl/KnobControl.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/KnobControl/KnobControl.bmp -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/KnobControl/KnobControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/KnobControl/KnobControl.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/KnobControl/KnobControl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/KnobControl/KnobControl.resx -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/KnobControl/KnobDesigner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/KnobControl/KnobDesigner.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/KnobControl/KnobProperty.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/KnobControl/KnobProperty.Designer.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/KnobControl/KnobProperty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/KnobControl/KnobProperty.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/KnobControl/KnobProperty.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/KnobControl/KnobProperty.resx -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/LEDArray/LEDArray.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/LEDArray/LEDArray.Designer.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/LEDArray/LEDArray.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/LEDArray/LEDArray.bmp -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/LEDArray/LEDArray.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/LEDArray/LEDArray.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/LEDArray/LEDArray.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/LEDArray/LEDArray.resx -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/LEDArray/LEDArrayDesigner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/LEDArray/LEDArrayDesigner.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/LedArrow/LedArrow.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/LedArrow/LedArrow.bmp -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/LedArrow/LedArrow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/LedArrow/LedArrow.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/LedArrow/LedArrow.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/LedArrow/LedArrow.designer.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/LedArrow/LedArrowDesigner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/LedArrow/LedArrowDesigner.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/LedMatrixControl/LedMatrixControl.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/LedMatrixControl/LedMatrixControl.Designer.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/LedMatrixControl/LedMatrixControl.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/LedMatrixControl/LedMatrixControl.bmp -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/LedMatrixControl/LedMatrixControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/LedMatrixControl/LedMatrixControl.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/LedMatrixControl/LedMatrixControl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/LedMatrixControl/LedMatrixControl.resx -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/LedMatrixControl/对应的资源必须是内嵌式的才可以在dll中进行引用.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/PathControl/PathControl.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/PathControl/PathControl.bmp -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/PathControl/PathControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/PathControl/PathControl.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/PathControl/PathControl.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/PathControl/PathControl.designer.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/PathControl/PathControl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/PathControl/PathControl.resx -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/PathControl/PathControlDesigner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/PathControl/PathControlDesigner.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/PressureGauge/PressureGauge.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/PressureGauge/PressureGauge.bmp -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/PressureGauge/PressureGauge.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/PressureGauge/PressureGauge.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/PressureGauge/PressureGauge.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/PressureGauge/PressureGauge.resx -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/PressureGauge/PressureGaugeDesigner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/PressureGauge/PressureGaugeDesigner.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/Program.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/Properties/Resources.resx -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/Resources/EasyButton/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/Resources/EasyButton/Thumbs.db -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/Resources/EasyButton/back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/Resources/EasyButton/back.png -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/Resources/EasyButton/calculator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/Resources/EasyButton/calculator.png -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/Resources/EasyButton/calendar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/Resources/EasyButton/calendar.png -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/Resources/EasyButton/cancel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/Resources/EasyButton/cancel.png -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/Resources/EasyButton/check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/Resources/EasyButton/check.png -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/Resources/EasyButton/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/Resources/EasyButton/close.png -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/Resources/EasyButton/document.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/Resources/EasyButton/document.png -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/Resources/EasyButton/document_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/Resources/EasyButton/document_add.png -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/Resources/EasyButton/document_delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/Resources/EasyButton/document_delete.png -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/Resources/EasyButton/document_edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/Resources/EasyButton/document_edit.png -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/Resources/EasyButton/down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/Resources/EasyButton/down.png -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/Resources/EasyButton/folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/Resources/EasyButton/folder.png -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/Resources/EasyButton/folder_open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/Resources/EasyButton/folder_open.png -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/Resources/EasyButton/go.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/Resources/EasyButton/go.png -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/Resources/EasyButton/info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/Resources/EasyButton/info.png -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/Resources/EasyButton/printer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/Resources/EasyButton/printer.png -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/Resources/EasyButton/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/Resources/EasyButton/refresh.png -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/Resources/EasyButton/setting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/Resources/EasyButton/setting.png -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/Resources/EasyButton/up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/Resources/EasyButton/up.png -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/Resources/EasyButton/web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/Resources/EasyButton/web.png -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/Resources/IndustryAquaGauge2/Reflection.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/Resources/IndustryAquaGauge2/Reflection.jpg -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/Resources/IndustryAquaGauge2/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/Resources/IndustryAquaGauge2/Thumbs.db -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/Resources/IndustryLed/ledred.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/Resources/IndustryLed/ledred.bmp -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/Resources/IndustrySwitch/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/Resources/IndustrySwitch/Thumbs.db -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/Resources/IndustrySwitch/垂直关.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/Resources/IndustrySwitch/垂直关.png -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/Resources/IndustrySwitch/垂直关1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/Resources/IndustrySwitch/垂直关1.png -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/Resources/IndustrySwitch/垂直开.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/Resources/IndustrySwitch/垂直开.png -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/Resources/IndustrySwitch/垂直开2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/Resources/IndustrySwitch/垂直开2.png -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/Resources/IndustrySwitch/按钮关.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/Resources/IndustrySwitch/按钮关.png -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/Resources/IndustrySwitch/按钮开.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/Resources/IndustrySwitch/按钮开.png -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/Resources/IndustrySwitch/水平关.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/Resources/IndustrySwitch/水平关.png -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/Resources/IndustrySwitch/水平开.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/Resources/IndustrySwitch/水平开.png -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/Resources/LedMatrixControl/LedMatrixSymbolFile.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/Resources/LedMatrixControl/LedMatrixSymbolFile.xml -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/Resources/LedMatrixSymbolFile.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/Resources/LedMatrixSymbolFile.xml -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/Resources/Tank/JYTank.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/Resources/Tank/JYTank.png -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/Resources/Tank/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/Resources/Tank/Thumbs.db -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/Resources/locale/i18n_GUI_CN.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/Resources/locale/i18n_GUI_CN.properties -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/Resources/locale/i18n_GUI_EN.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/Resources/locale/i18n_GUI_EN.properties -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/Resources/右钮.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/Resources/右钮.png -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/Resources/左钮.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/Resources/左钮.png -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/Resources/开关1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/Resources/开关1.png -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/Resources/开关2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/Resources/开关2.png -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/Resources/钮1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/Resources/钮1.png -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/Resources/钮2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/Resources/钮2.png -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/ScrollingText/JYScrollingText.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/ScrollingText/JYScrollingText.resx -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/ScrollingText/ScorollingText.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/ScrollingText/ScorollingText.bmp -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/ScrollingText/ScrollingText.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/ScrollingText/ScrollingText.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/Segment/SevenSegment.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/Segment/SevenSegment.Designer.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/Segment/SevenSegment.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/Segment/SevenSegment.bmp -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/Segment/SevenSegment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/Segment/SevenSegment.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/Segment/SevenSegmentDesigner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/Segment/SevenSegmentDesigner.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/SegmentBright/SegmentBright.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/SegmentBright/SegmentBright.bmp -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/SegmentBright/SegmentBright.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/SegmentBright/SegmentBright.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/SegmentBright/SevenSegmentBrightDesigner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/SegmentBright/SevenSegmentBrightDesigner.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/Slide/JYColorHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/Slide/JYColorHelper.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/Slide/JYDrawStyleHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/Slide/JYDrawStyleHelper.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/Slide/JYSlides.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/Slide/JYSlides.Designer.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/Slide/Slide.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/Slide/Slide.bmp -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/Slide/Slide.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/Slide/Slide.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/Slide/SlideDesigner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/Slide/SlideDesigner.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/Slide/SlideProperty.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/Slide/SlideProperty.Designer.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/Slide/SlideProperty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/Slide/SlideProperty.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/Slide/SlideProperty.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/Slide/SlideProperty.resx -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/StripChart/AxisViewAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/StripChart/AxisViewAdapter.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/StripChart/Plotter/BindStripPlotter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/StripChart/Plotter/BindStripPlotter.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/StripChart/Plotter/CommonStripPlotter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/StripChart/Plotter/CommonStripPlotter.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/StripChart/Plotter/OverLapWrapBuffer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/StripChart/Plotter/OverLapWrapBuffer.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/StripChart/Plotter/PlotAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/StripChart/Plotter/PlotAction.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/StripChart/Plotter/SparseStripPlotter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/StripChart/Plotter/SparseStripPlotter.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/StripChart/Property/AppearanceEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/StripChart/Property/AppearanceEditor.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/StripChart/Property/LockedList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/StripChart/Property/LockedList.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/StripChart/Property/StripChartApperance.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/StripChart/Property/StripChartApperance.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/StripChart/Property/StripChartSeries.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/StripChart/Property/StripChartSeries.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/StripChart/Set_StripChart_YAxis_Range.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/StripChart/Set_StripChart_YAxis_Range.Designer.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/StripChart/Set_StripChart_YAxis_Range.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/StripChart/Set_StripChart_YAxis_Range.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/StripChart/Set_StripChart_YAxis_Range.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/StripChart/Set_StripChart_YAxis_Range.resx -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/StripChart/StripChart.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/StripChart/StripChart.Designer.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/StripChart/StripChart.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/StripChart/StripChart.bmp -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/StripChart/StripChart.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/StripChart/StripChart.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/StripChart/StripChart.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/StripChart/StripChart.resx -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/StripChart/StripChartDeisgner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/StripChart/StripChartDeisgner.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/StripChart/StripChartProperty.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/StripChart/StripChartProperty.Designer.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/StripChart/StripChartProperty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/StripChart/StripChartProperty.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/StripChart/StripChartProperty.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/StripChart/StripChartProperty.resx -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/StripChart/StripChartUtility/AxisViewAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/StripChart/StripChartUtility/AxisViewAdapter.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/StripChart/StripChartUtility/Constants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/StripChart/StripChartUtility/Constants.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/StripChart/StripChartUtility/ParallelHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/StripChart/StripChartUtility/ParallelHandler.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/StripChart/StripChartUtility/Utility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/StripChart/StripChartUtility/Utility.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/StripChart/StripPlotter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/StripChart/StripPlotter.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/StripChartX/StripChartX.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/StripChartX/StripChartX.Designer.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/StripChartX/StripChartX.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/StripChartX/StripChartX.bmp -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/StripChartX/StripChartX.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/StripChartX/StripChartX.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/StripChartX/StripChartX.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/StripChartX/StripChartX.resx -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/StripChartX/StripChartXData/DataEntities/IndexDataEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/StripChartX/StripChartXData/DataEntities/IndexDataEntity.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/StripChartX/StripChartXData/DataEntities/StringDataEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/StripChartX/StripChartXData/DataEntities/StringDataEntity.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/StripChartX/StripChartXData/DataEntities/TimeStampDataEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/StripChartX/StripChartXData/DataEntities/TimeStampDataEntity.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/StripChartX/StripChartXData/DataEntityBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/StripChartX/StripChartXData/DataEntityBase.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/StripChartX/StripChartXData/DataEntityInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/StripChartX/StripChartXData/DataEntityInfo.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/StripChartX/StripChartXData/OverLapWrapBuffer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/StripChartX/StripChartXData/OverLapWrapBuffer.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/StripChartX/StripChartXData/PlotBuffer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/StripChartX/StripChartXData/PlotBuffer.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/StripChartX/StripChartXData/ReadOnlyBuf.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/StripChartX/StripChartXData/ReadOnlyBuf.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/StripChartX/StripChartXDesigner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/StripChartX/StripChartXDesigner.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/StripChartX/StripChartXEditor/StripChartXLineSeries.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/StripChartX/StripChartXEditor/StripChartXLineSeries.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/StripChartX/StripChartXEditor/StripChartXLineSeriesEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/StripChartX/StripChartXEditor/StripChartXLineSeriesEditor.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/StripChartX/StripChartXEditor/StripTabCursorCollectionEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/StripChartX/StripChartXEditor/StripTabCursorCollectionEditor.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/StripChartX/StripChartXEditor/StripTabCursorDesignTimeCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/StripChartX/StripChartXEditor/StripTabCursorDesignTimeCollection.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/StripChartX/StripChartXEvents/StripChartXCursorEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/StripChartX/StripChartXEvents/StripChartXCursorEventArgs.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/StripChartX/StripChartXEvents/StripChartXPlotEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/StripChartX/StripChartXEvents/StripChartXPlotEventArgs.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/StripChartX/StripChartXEvents/StripChartXViewEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/StripChartX/StripChartXEvents/StripChartXViewEventArgs.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/StripChartX/StripChartXEvents/StripTabCursorEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/StripChartX/StripChartXEvents/StripTabCursorEventArgs.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/StripChartX/StripChartXPropertyForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/StripChartX/StripChartXPropertyForm.Designer.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/StripChartX/StripChartXPropertyForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/StripChartX/StripChartXPropertyForm.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/StripChartX/StripChartXPropertyForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/StripChartX/StripChartXPropertyForm.resx -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/StripChartX/StripChartXRangeYConfigForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/StripChartX/StripChartXRangeYConfigForm.Designer.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/StripChartX/StripChartXRangeYConfigForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/StripChartX/StripChartXRangeYConfigForm.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/StripChartX/StripChartXRangeYConfigForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/StripChartX/StripChartXRangeYConfigForm.resx -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/StripChartX/StripChartXUtility/AxisSynchronizer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/StripChartX/StripChartXUtility/AxisSynchronizer.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/StripChartX/StripChartXUtility/AxisViewAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/StripChartX/StripChartXUtility/AxisViewAdapter.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/StripChartX/StripChartXUtility/ChartViewManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/StripChartX/StripChartXUtility/ChartViewManager.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/StripChartX/StripChartXUtility/Constants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/StripChartX/StripChartXUtility/Constants.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/StripChartX/StripChartXUtility/DataCheckParameters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/StripChartX/StripChartXUtility/DataCheckParameters.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/StripChartX/StripChartXUtility/DataConvertor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/StripChartX/StripChartXUtility/DataConvertor.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/StripChartX/StripChartXUtility/LayoutDirection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/StripChartX/StripChartXUtility/LayoutDirection.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/StripChartX/StripChartXUtility/MiscellaneousConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/StripChartX/StripChartXUtility/MiscellaneousConfiguration.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/StripChartX/StripChartXUtility/ParallelHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/StripChartX/StripChartXUtility/ParallelHandler.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/StripChartX/StripChartXUtility/PlotManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/StripChartX/StripChartXUtility/PlotManager.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/StripChartX/StripChartXUtility/StripChartXAxis.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/StripChartX/StripChartXUtility/StripChartXAxis.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/StripChartX/StripChartXUtility/StripChartXCursor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/StripChartX/StripChartXUtility/StripChartXCursor.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/StripChartX/StripChartXUtility/StripChartXPlotArea.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/StripChartX/StripChartXUtility/StripChartXPlotArea.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/StripChartX/StripChartXUtility/StripChartXPlotAreaCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/StripChartX/StripChartXUtility/StripChartXPlotAreaCollection.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/StripChartX/StripChartXUtility/StripChartXSeries.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/StripChartX/StripChartXUtility/StripChartXSeries.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/StripChartX/StripChartXUtility/StripChartXSeriesCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/StripChartX/StripChartXUtility/StripChartXSeriesCollection.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/StripChartX/StripChartXUtility/Utility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/StripChartX/StripChartXUtility/Utility.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/StripChartX/StripTabCursorUtility/PositionAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/StripChartX/StripTabCursorUtility/PositionAdapter.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/StripChartX/StripTabCursorUtility/StripTabCursor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/StripChartX/StripTabCursorUtility/StripTabCursor.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/StripChartX/StripTabCursorUtility/StripTabCursorCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/StripChartX/StripTabCursorUtility/StripTabCursorCollection.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/StripChartX/StripTabCursorUtility/StripTabCursorControl.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/StripChartX/StripTabCursorUtility/StripTabCursorControl.Designer.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/StripChartX/StripTabCursorUtility/StripTabCursorControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/StripChartX/StripTabCursorUtility/StripTabCursorControl.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/StripChartX/StripTabCursorUtility/StripTabCursorControl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/StripChartX/StripTabCursorUtility/StripTabCursorControl.resx -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/StripChartX/StripTabCursorUtility/StripTabCursorInfoForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/StripChartX/StripTabCursorUtility/StripTabCursorInfoForm.Designer.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/StripChartX/StripTabCursorUtility/StripTabCursorInfoForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/StripChartX/StripTabCursorUtility/StripTabCursorInfoForm.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/StripChartX/StripTabCursorUtility/StripTabCursorInfoForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/StripChartX/StripTabCursorUtility/StripTabCursorInfoForm.resx -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/SwitchArray/SwitchArray.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/SwitchArray/SwitchArray.Designer.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/SwitchArray/SwitchArray.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/SwitchArray/SwitchArray.bmp -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/SwitchArray/SwitchArray.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/SwitchArray/SwitchArray.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/SwitchArray/SwitchArray.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/SwitchArray/SwitchArray.resx -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/SwitchArray/SwitchArrayDesigner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/SwitchArray/SwitchArrayDesigner.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/Tank/Tank.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/Tank/Tank.bmp -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/Tank/Tank.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/Tank/Tank.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/Tank/TankDesigner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/Tank/TankDesigner.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/Tank/TankProperty.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/Tank/TankProperty.Designer.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/Tank/TankProperty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/Tank/TankProperty.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/Tank/TankProperty.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/Tank/TankProperty.resx -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/Thermometer/Thermometer.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/Thermometer/Thermometer.Designer.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/Thermometer/Thermometer.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/Thermometer/Thermometer.bmp -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/Thermometer/Thermometer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/Thermometer/Thermometer.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/Thermometer/ThermometerDesigner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/Thermometer/ThermometerDesigner.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/Thermometer/ThermometerPorperty.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/Thermometer/ThermometerPorperty.Designer.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/Thermometer/ThermometerPorperty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/Thermometer/ThermometerPorperty.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/Thermometer/ThermometerPorperty.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/Thermometer/ThermometerPorperty.resx -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/Utility/BorderSimple.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/Utility/BorderSimple.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/Utility/CollectionPropertyEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/Utility/CollectionPropertyEditor.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/Utility/CollectionPropertyEditorForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/Utility/CollectionPropertyEditorForm.Designer.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/Utility/CollectionPropertyEditorForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/Utility/CollectionPropertyEditorForm.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/Utility/CollectionPropertyEditorForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/Utility/CollectionPropertyEditorForm.resx -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/Utility/ColorSection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/Utility/ColorSection.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/Utility/ControlFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/Utility/ControlFactory.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/Utility/HSLColor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/Utility/HSLColor.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/Utility/PropertiesEditorForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/Utility/PropertiesEditorForm.Designer.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/Utility/PropertiesEditorForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/Utility/PropertiesEditorForm.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/Utility/PropertiesEditorForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/Utility/PropertiesEditorForm.resx -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/Utility/PropertyClonableClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/Utility/PropertyClonableClass.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/Utility/PropertyClonableClassEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/Utility/PropertyClonableClassEditor.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/Utility/TickMajor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/Utility/TickMajor.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/Utility/TickMinor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/Utility/TickMinor.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/Utility/iColors.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/Utility/iColors.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/ViewController/ControlElements/ViewControlElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/ViewController/ControlElements/ViewControlElement.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/ViewController/StateOperationDialog.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/ViewController/StateOperationDialog.Designer.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/ViewController/StateOperationDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/ViewController/StateOperationDialog.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/ViewController/StateOperationDialog.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/ViewController/StateOperationDialog.resx -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/ViewController/ViewController.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/ViewController/ViewController.bmp -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/ViewController/ViewController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/ViewController/ViewController.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/ViewController/ViewController.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/ViewController/ViewController.resx -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/ViewController/ViewControllerDesigner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/ViewController/ViewControllerDesigner.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/ViewController/ViewControllerDialog.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/ViewController/ViewControllerDialog.Designer.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/ViewController/ViewControllerDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/ViewController/ViewControllerDialog.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/ViewController/ViewControllerDialog.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/ViewController/ViewControllerDialog.resx -------------------------------------------------------------------------------- /SeeSharpTools/JY.GUI/jytek.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.GUI/jytek.ico -------------------------------------------------------------------------------- /SeeSharpTools/JY.Graph3D/JY.Graph3D.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.Graph3D/JY.Graph3D.csproj -------------------------------------------------------------------------------- /SeeSharpTools/JY.Graph3D/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.Graph3D/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.Graph3D/Resource/ILNumerics.Drawing.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.Graph3D/Resource/ILNumerics.Drawing.dll -------------------------------------------------------------------------------- /SeeSharpTools/JY.Graph3D/Resource/ILNumerics.Net.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.Graph3D/Resource/ILNumerics.Net.dll -------------------------------------------------------------------------------- /SeeSharpTools/JY.Graph3D/Resource/OpenTK.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.Graph3D/Resource/OpenTK.dll -------------------------------------------------------------------------------- /SeeSharpTools/JY.Graph3D/SurfaceGraph/SGDesigner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.Graph3D/SurfaceGraph/SGDesigner.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.Graph3D/SurfaceGraph/SurfaceGraph.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.Graph3D/SurfaceGraph/SurfaceGraph.Designer.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.Graph3D/SurfaceGraph/SurfaceGraph.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.Graph3D/SurfaceGraph/SurfaceGraph.bmp -------------------------------------------------------------------------------- /SeeSharpTools/JY.Graph3D/SurfaceGraph/SurfaceGraph.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.Graph3D/SurfaceGraph/SurfaceGraph.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.Graph3D/SurfaceGraph/SurfaceGraph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.Graph3D/SurfaceGraph/SurfaceGraph.png -------------------------------------------------------------------------------- /SeeSharpTools/JY.Graph3D/SurfaceGraph/SurfaceGraph.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.Graph3D/SurfaceGraph/SurfaceGraph.resx -------------------------------------------------------------------------------- /SeeSharpTools/JY.Graph3D/SurfaceGraph/ViewPoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.Graph3D/SurfaceGraph/ViewPoint.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.Localization/JY.Localization.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.Localization/JY.Localization.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.Localization/JY.Localization.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.Localization/JY.Localization.csproj -------------------------------------------------------------------------------- /SeeSharpTools/JY.Localization/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.Localization/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.Mathematics/ArrayArithmetic/ArrayArithmetic.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.Mathematics/ArrayArithmetic/ArrayArithmetic.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.Mathematics/ArrayArithmetic/ArrayArithmeticProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.Mathematics/ArrayArithmetic/ArrayArithmeticProvider.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.Mathematics/ArrayOperation/ArrayOperation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.Mathematics/ArrayOperation/ArrayOperation.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.Mathematics/ArrayOperation/ArrayOperationProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.Mathematics/ArrayOperation/ArrayOperationProvider.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.Mathematics/Calculus/Calculus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.Mathematics/Calculus/Calculus.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.Mathematics/Calculus/CalculusProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.Mathematics/Calculus/CalculusProvider.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.Mathematics/Fitting/Fitting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.Mathematics/Fitting/Fitting.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.Mathematics/Fitting/FittingProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.Mathematics/Fitting/FittingProvider.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.Mathematics/Interfaces/IArrayArithmetic.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.Mathematics/Interfaces/IArrayArithmetic.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.Mathematics/Interfaces/IArrayOperation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.Mathematics/Interfaces/IArrayOperation.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.Mathematics/Interfaces/ICalculus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.Mathematics/Interfaces/ICalculus.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.Mathematics/Interfaces/IFitting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.Mathematics/Interfaces/IFitting.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.Mathematics/Interfaces/IInterpolation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.Mathematics/Interfaces/IInterpolation.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.Mathematics/Interfaces/ILinearAlgebra.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.Mathematics/Interfaces/ILinearAlgebra.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.Mathematics/Interfaces/IStatistics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.Mathematics/Interfaces/IStatistics.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.Mathematics/Interpolation/Interpolation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.Mathematics/Interpolation/Interpolation.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.Mathematics/Interpolation/InterpolationProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.Mathematics/Interpolation/InterpolationProvider.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.Mathematics/JY.Mathematics.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.Mathematics/JY.Mathematics.csproj -------------------------------------------------------------------------------- /SeeSharpTools/JY.Mathematics/LinearAlgebra/LinearAlgebra.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.Mathematics/LinearAlgebra/LinearAlgebra.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.Mathematics/LinearAlgebra/LinearAlgebraProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.Mathematics/LinearAlgebra/LinearAlgebraProvider.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.Mathematics/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.Mathematics/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.Mathematics/Provider/Engine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.Mathematics/Provider/Engine.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.Mathematics/Provider/IPP/IPPNative.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.Mathematics/Provider/IPP/IPPNative.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.Mathematics/Provider/IPP/ProviderIPP.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.Mathematics/Provider/IPP/ProviderIPP.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.Mathematics/Provider/MKL/MKLNative.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.Mathematics/Provider/MKL/MKLNative.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.Mathematics/Provider/MKL/ProviderMKL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.Mathematics/Provider/MKL/ProviderMKL.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.Mathematics/Statistics/Statistics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.Mathematics/Statistics/Statistics.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.Mathematics/Statistics/StatisticsProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.Mathematics/Statistics/StatisticsProvider.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.Queue/CircularQueue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.Queue/CircularQueue.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.Queue/Common/ParallelHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.Queue/Common/ParallelHandler.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.Queue/Common/i18n/I18nEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.Queue/Common/i18n/I18nEntity.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.Queue/Common/i18n/I18nLocalWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.Queue/Common/i18n/I18nLocalWrapper.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.Queue/JY.ThreadSafeQueue.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.Queue/JY.ThreadSafeQueue.csproj -------------------------------------------------------------------------------- /SeeSharpTools/JY.Queue/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.Queue/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.Queue/Resources/locale/i18n_Queue_CN.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.Queue/Resources/locale/i18n_Queue_CN.properties -------------------------------------------------------------------------------- /SeeSharpTools/JY.Queue/Resources/locale/i18n_Queue_EN.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.Queue/Resources/locale/i18n_Queue_EN.properties -------------------------------------------------------------------------------- /SeeSharpTools/JY.Queue/TheadSafeQueue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.Queue/TheadSafeQueue.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.Report/ExcelReport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.Report/ExcelReport.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.Report/JY.Report.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.Report/JY.Report.csproj -------------------------------------------------------------------------------- /SeeSharpTools/JY.Report/Log/DirectoryLog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.Report/Log/DirectoryLog.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.Report/Log/FileLogBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.Report/Log/FileLogBase.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.Report/Log/ILogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.Report/Log/ILogger.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.Report/Log/LogBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.Report/Log/LogBase.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.Report/Log/SingleFileLog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.Report/Log/SingleFileLog.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.Report/Logger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.Report/Logger.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.Report/LoggerConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.Report/LoggerConfig.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.Report/LoggerEnum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.Report/LoggerEnum.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.Report/Parameters/Enum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.Report/Parameters/Enum.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.Report/Parameters/ErrorHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.Report/Parameters/ErrorHandler.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.Report/Parameters/Styles.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.Report/Parameters/Styles.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.Report/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.Report/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.Report/Properties/HResultLUT.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.Report/Properties/HResultLUT.bin -------------------------------------------------------------------------------- /SeeSharpTools/JY.Report/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.Report/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.Report/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.Report/Properties/Resources.resx -------------------------------------------------------------------------------- /SeeSharpTools/JY.Report/SeeSharpTools.JY.Report.cd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.Report/SeeSharpTools.JY.Report.cd -------------------------------------------------------------------------------- /SeeSharpTools/JY.Report/WordReport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.Report/WordReport.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.Sensors/CustomScaling/CustomScaling.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.Sensors/CustomScaling/CustomScaling.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.Sensors/Displacement sensor/DisplacementSensor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.Sensors/Displacement sensor/DisplacementSensor.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.Sensors/JY.Sensors.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.Sensors/JY.Sensors.csproj -------------------------------------------------------------------------------- /SeeSharpTools/JY.Sensors/LoadCell/LoadCell.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.Sensors/LoadCell/LoadCell.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.Sensors/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.Sensors/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.Sensors/RTD/Interpolation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.Sensors/RTD/Interpolation.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.Sensors/RTD/RTD.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.Sensors/RTD/RTD.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.Sensors/RTD/RTDValueConvertor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.Sensors/RTD/RTDValueConvertor.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.Sensors/SeeSharpTools.JY.Sensors.cd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.Sensors/SeeSharpTools.JY.Sensors.cd -------------------------------------------------------------------------------- /SeeSharpTools/JY.Sensors/Thermistor/Thermistor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.Sensors/Thermistor/Thermistor.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.Sensors/Thermocouple/TC_TypeB.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.Sensors/Thermocouple/TC_TypeB.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.Sensors/Thermocouple/TC_TypeE.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.Sensors/Thermocouple/TC_TypeE.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.Sensors/Thermocouple/TC_TypeJ.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.Sensors/Thermocouple/TC_TypeJ.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.Sensors/Thermocouple/TC_TypeK.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.Sensors/Thermocouple/TC_TypeK.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.Sensors/Thermocouple/TC_TypeN.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.Sensors/Thermocouple/TC_TypeN.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.Sensors/Thermocouple/TC_TypeR.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.Sensors/Thermocouple/TC_TypeR.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.Sensors/Thermocouple/TC_TypeS.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.Sensors/Thermocouple/TC_TypeS.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.Sensors/Thermocouple/TC_TypeT.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.Sensors/Thermocouple/TC_TypeT.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.Sensors/Thermocouple/Thermocouple.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.Sensors/Thermocouple/Thermocouple.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.Statistics/Engine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.Statistics/Engine.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.Statistics/IPPLibraries/Arithmetics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.Statistics/IPPLibraries/Arithmetics.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.Statistics/IPPLibraries/ArrayOperation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.Statistics/IPPLibraries/ArrayOperation.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.Statistics/IPPLibraries/Exponential.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.Statistics/IPPLibraries/Exponential.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.Statistics/IPPLibraries/Generation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.Statistics/IPPLibraries/Generation.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.Statistics/IPPLibraries/Power.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.Statistics/IPPLibraries/Power.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.Statistics/IPPLibraries/Rounding.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.Statistics/IPPLibraries/Rounding.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.Statistics/IPPLibraries/Statistics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.Statistics/IPPLibraries/Statistics.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.Statistics/JY.Statistics.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.Statistics/JY.Statistics.csproj -------------------------------------------------------------------------------- /SeeSharpTools/JY.Statistics/JY.Statistics.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.Statistics/JY.Statistics.csproj.user -------------------------------------------------------------------------------- /SeeSharpTools/JY.Statistics/NativeDLLs/ia32/ippcore.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.Statistics/NativeDLLs/ia32/ippcore.dll -------------------------------------------------------------------------------- /SeeSharpTools/JY.Statistics/NativeDLLs/ia32/ipps.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.Statistics/NativeDLLs/ia32/ipps.dll -------------------------------------------------------------------------------- /SeeSharpTools/JY.Statistics/NativeDLLs/ia32/ippvm.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.Statistics/NativeDLLs/ia32/ippvm.dll -------------------------------------------------------------------------------- /SeeSharpTools/JY.Statistics/NativeDLLs/ia32/ippvmg9.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.Statistics/NativeDLLs/ia32/ippvmg9.dll -------------------------------------------------------------------------------- /SeeSharpTools/JY.Statistics/NativeDLLs/intel64/ippcore.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.Statistics/NativeDLLs/intel64/ippcore.dll -------------------------------------------------------------------------------- /SeeSharpTools/JY.Statistics/NativeDLLs/intel64/ipps.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.Statistics/NativeDLLs/intel64/ipps.dll -------------------------------------------------------------------------------- /SeeSharpTools/JY.Statistics/NativeDLLs/intel64/ippvm.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.Statistics/NativeDLLs/intel64/ippvm.dll -------------------------------------------------------------------------------- /SeeSharpTools/JY.Statistics/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.Statistics/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.Statistics/Statistics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.Statistics/Statistics.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.Statistics/ippImport/Enum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.Statistics/ippImport/Enum.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.Statistics/ippImport/ippNativeX64.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.Statistics/ippImport/ippNativeX64.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.Statistics/ippImport/ippNativeX86.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.Statistics/ippImport/ippNativeX86.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.TCP/Common/CircularBuffer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.TCP/Common/CircularBuffer.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.TCP/Common/Enum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.TCP/Common/Enum.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.TCP/Common/IBuffer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.TCP/Common/IBuffer.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.TCP/Common/StringBuffer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.TCP/Common/StringBuffer.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.TCP/Common/TCPClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.TCP/Common/TCPClient.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.TCP/Common/TCPServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.TCP/Common/TCPServer.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.TCP/JY.TCP.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.TCP/JY.TCP.csproj -------------------------------------------------------------------------------- /SeeSharpTools/JY.TCP/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.TCP/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.TCP/Source/JYTCPClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.TCP/Source/JYTCPClient.cs -------------------------------------------------------------------------------- /SeeSharpTools/JY.TCP/Source/JYTCPServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/JY.TCP/Source/JYTCPServer.cs -------------------------------------------------------------------------------- /SeeSharpTools/ReleaseNotes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/ReleaseNotes.txt -------------------------------------------------------------------------------- /SeeSharpTools/SeeSharpTools Installer/Resources/AudioLibrary.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/SeeSharpTools Installer/Resources/AudioLibrary.dll -------------------------------------------------------------------------------- /SeeSharpTools/SeeSharpTools Installer/Resources/DSPMatlab.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/SeeSharpTools Installer/Resources/DSPMatlab.dll -------------------------------------------------------------------------------- /SeeSharpTools/SeeSharpTools Installer/Resources/DSPMatlab_X64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/SeeSharpTools Installer/Resources/DSPMatlab_X64.dll -------------------------------------------------------------------------------- /SeeSharpTools/SeeSharpTools Installer/Resources/DSPMatlab_X86.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/SeeSharpTools Installer/Resources/DSPMatlab_X86.dll -------------------------------------------------------------------------------- /SeeSharpTools/SeeSharpTools Installer/Resources/FindPeaksAndValleysMatlab.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/SeeSharpTools Installer/Resources/FindPeaksAndValleysMatlab.dll -------------------------------------------------------------------------------- /SeeSharpTools/SeeSharpTools Installer/Resources/ILNumerics.Drawing.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/SeeSharpTools Installer/Resources/ILNumerics.Drawing.dll -------------------------------------------------------------------------------- /SeeSharpTools/SeeSharpTools Installer/Resources/ILNumerics.Net.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/SeeSharpTools Installer/Resources/ILNumerics.Net.dll -------------------------------------------------------------------------------- /SeeSharpTools/SeeSharpTools Installer/Resources/JYSpectrumCore.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/SeeSharpTools Installer/Resources/JYSpectrumCore.dll -------------------------------------------------------------------------------- /SeeSharpTools/SeeSharpTools Installer/Resources/MWArray.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/SeeSharpTools Installer/Resources/MWArray.dll -------------------------------------------------------------------------------- /SeeSharpTools/SeeSharpTools Installer/Resources/ManagedAudioLibrary.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/SeeSharpTools Installer/Resources/ManagedAudioLibrary.dll -------------------------------------------------------------------------------- /SeeSharpTools/SeeSharpTools Installer/Resources/MathNet.Filtering.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/SeeSharpTools Installer/Resources/MathNet.Filtering.dll -------------------------------------------------------------------------------- /SeeSharpTools/SeeSharpTools Installer/Resources/MathNet.Numerics.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/SeeSharpTools Installer/Resources/MathNet.Numerics.dll -------------------------------------------------------------------------------- /SeeSharpTools/SeeSharpTools Installer/Resources/OpenTK.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/SeeSharpTools Installer/Resources/OpenTK.dll -------------------------------------------------------------------------------- /SeeSharpTools/SeeSharpTools Installer/Resources/SeeSharpTools User Manual_1.4.4.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/SeeSharpTools Installer/Resources/SeeSharpTools User Manual_1.4.4.pdf -------------------------------------------------------------------------------- /SeeSharpTools/SeeSharpTools Installer/Resources/System.Windows.Forms.DataVisualization.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/SeeSharpTools Installer/Resources/System.Windows.Forms.DataVisualization.dll -------------------------------------------------------------------------------- /SeeSharpTools/SeeSharpTools Installer/Resources/libiomp5md.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/SeeSharpTools Installer/Resources/libiomp5md.dll -------------------------------------------------------------------------------- /SeeSharpTools/SeeSharpTools.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/SeeSharpTools/SeeSharpTools.sln -------------------------------------------------------------------------------- /media/jytek_controls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SeeSharpOpenSource/SeeSharpTools/HEAD/media/jytek_controls.png --------------------------------------------------------------------------------