首页 > 其他分享 >Spread WPF 18.0 FIX

Spread WPF 18.0 FIX

时间:2025-01-01 17:55:59浏览次数:11  
标签:Designer SpreadSheet designer spreadsheet Spread various 18.0 WPF

SpreadSheet Designer

The SpreadSheet Designer is a standalone tool that allows you to easily create a spreadsheet component. Whether you are designing a complete spreadsheet component or simply customizing a portion of an existing spreadsheet component, the intuitive graphical interface of Spread for WPF offers many features to save time and effort. It allows users to design, input data into spreadsheets, save the work as a file, and share it with others. For example, users can design spreadsheets by specifying cell types and formats, input data, and save the files in Excel format or CSV format.

There are two ways to start the designer:

  • Launch from Visual Studio: To launch the designer from Visual Studio, right-click on the GcSpreadSheet control placed on the window in the XAML file and select SpreadSheet Designer from the context menu.        

  • Launch from the Start Menu: You can also run the SpreadSheet Designer as a standalone application, without using Visual Studio, by selecting the Start menu > Mescius > Spread for WPF.

Once the SpreadSheet Designer is open, you can freely edit the spreadsheet using the various options available. The designer offers a WYSIWYG environment for quick and easy customization of spreadsheets. It includes several UI elements, such as tabs, groups, Quick Access Toolbar, and Formula Bar. The sheet is called as the worksheet or spreadsheet, which is the working area for Spread for WPF, which consists of cells where users can enter data, perform mathematical computations, add charts, and more.

The following image displays the various UI elements available in the designer.

The topics below provide detailed information about the designer interface.

Topic Content
Designer TabsExplains the various tabs available in the designer.
Designer DialogsExplains the various dialog boxes available in the designer.
Context MenusExplains different context menus that appear when clicking on different parts of the designer.

标签:Designer,SpreadSheet,designer,spreadsheet,Spread,various,18.0,WPF
From: https://blog.csdn.net/john_dwh/article/details/144851979

相关文章

  • Spread WinForms 18.0 FIX
    SpreadDesignerUserInterfaceWhilenotacomprehensivesummaryofeverypartoftheSpreadDesigneruserinterface(UI),thisbriefoverviewpointsoutafewofthemainpartsoftheinterfaceandshowsyouthebasiclayoutoftheSpreadDesigner.There......
  • 使用cubic制作ubuntu18.04系统镜像
    一安装cubicsudoapt-add-repositoryuniversesudoapt-add-repositoryppa:cubic-wizard/releasesudoaptupdatesudoaptinstall--no-install-recommendscubic二使用cubic安装环境1.准备工作下载原始ubuntu18.04镜像,创建下图文件夹,并将原始镜像拷贝进去2.......
  • 【WPF学习】第五十四章 关键帧动画
    【WPF学习】第五十四章关键帧动画 到目前为止,看到的所有动画都使用线性插值从起点到终点。但如果需要创建具有多个分段的动画和不规则移动的动画。例如,可能希望创建一个动画,快速地将一个元素滑入到视图中,然后慢慢地将它移到正确位置。可通过创建两个连续的动画,并使用Beg......
  • 【WPF学习】第十六章 键盘输入
    【WPF学习】第十六章键盘输入 当用户按下键盘上的一个键时,就会发生一系列事件。下表根据他们的发生顺序列出了这些事件:表所有元素的键盘事件(按顺序) 键盘处理永远不会像上面看到的这么简单。一些控件可能会挂起这些事件中的某些事件,从而可执行自己更特殊的键......
  • 【WPF学习】第五十三章 动画类型回顾
    【WPF学习】第五十三章动画类型回顾 创建动画面临的第一个挑战是为动画选择正确的属性。期望的结果(例如,在窗口中移动元素)与需要使用的属性(在这种情况下是Canvas.Left和Canvas.Top属性)之间的关系并不总是很直观。下面是一些指导原则:如果希望使用动画来使元素显示和......
  • WPF使用TreeView和TabControl控件jian实现菜单的选择和切换
    一、页面添加TreeView和TabControl控件1.在MainWindow.xaml页面上添加TreeView控件,设置ItemsSource属性为ViewModel中的TreeList属性,添加<TreeView.ItemTemplate>,在该节点下添加<HierarchicalDataTemplate>,绑定ViewModel中的TreeList下子项中的Children属性,菜单名称绑定Header......
  • WPF Speech SpeechSynthesizer
    AddreferenceSystem.SpeechusingSystem;usingSystem.Collections.Generic;usingSystem.IO;usingSystem.Linq;usingSystem.Speech.Synthesis;usingSystem.Text;usingSystem.Threading;usingSystem.Threading.Tasks;usingSystem.Windows;usingSystem.Win......
  • WPF play video via VideoDrawing and DrawingImage
    usingSystem;usingSystem.Collections.Generic;usingSystem.Linq;usingSystem.Text;usingSystem.Threading.Tasks;usingSystem.Windows;usingSystem.Windows.Controls;usingSystem.Windows.Data;usingSystem.Windows.Documents;usingSystem.Windows.Input;......
  • WPF MediaElement LoadedBehavior Manual Play
    usingSystem;usingSystem.Collections.Generic;usingSystem.Linq;usingSystem.Text;usingSystem.Threading.Tasks;usingSystem.Windows;usingSystem.Windows.Controls;usingSystem.Windows.Data;usingSystem.Windows.Documents;usingSystem.Windows.Input;......
  • WPF 记录鼠标、触摸多设备混合输入场景问题
    本文记录在WPF应用中鼠标、触摸混合输入,鼠标事件抬起时不会有MouseUp事件触发的问题。事件输入我们都知道有3类:鼠标、触摸、触笔,鼠标是windows系统出来就有的事件,后面加了触笔、触摸。1.鼠标输入,只会触发Mouse冒泡隧道事件;2.触笔输入,会触发除了Stylus事件外,还会触发Mouse事件;3......