初学者正朝着正确的方向和一些问题努力 [英] Beginners push in the right directions and some questions

查看:100
本文介绍了初学者正朝着正确的方向和一些问题努力的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

大家好,

我是新的Visual Studio,但不是编程新手。

i am new Visual Studio but not new to programming.

可悲的是,我在编程方面的知识只是肤浅的并且主要使用Linden脚本语言,ecue脚本以及许多年前在Turbo Pascal中使用的先前语言:)

Sadly my knowledge in programming is only superficial and mostly in prioritary languages like the Linden script language, the ecue e-script and many many years back in Turbo Pascal :)

我对使用Virtual可以执行的所有操作感到有点不知所措工作室和所有关于它的信息,所以我正在寻找一个正确的方向推动。我不是在寻找代码,而是在寻找需要使用的元素的更多想法或提示。

I am a bit overmhelmed of all things you can do with Virtual Studio and all the informations about it so i am looking for a little push in the right direction. I am not looking for code but more ideas or tips to what elements i need to use.

我有一些问题:

1)有很多教程,但我真的没有看到任何关于Virtual Studio本身。我的意思是关于移动VS的教程,菜单/设置的含义,工具箱中每个元素的作用。我只是想念它或者有人知道我在哪里可以找到
一些?带有简短描述的命名空间列表也很不错。

1) There are many tutorials around but i not really see anything about Virtual Studio itself. I mean tutorials about moving around VS, what the menu/settings mean, what each element in the toolbox do. Did i just miss it or somebody know where i can find some?? A list of namespaces with short descriptions would be nice as well.

2)我正在使用工作中的一些东西学习VS并尝试编程一个用于触摸屏的小窗口工具。

在这个触摸屏上,我可以使用用户按钮编写用户页面,设置一些参数并将整个导出到定义的XML文件上。

2) I am using somethings that came up at work to learn VS and trying to program a little window tool for a touch screen.
On this touchscreen, i can program user pages with user buttons, set some parameters and export the whole on a defined XML file.

我想张贴一张图片,但我还不能(是的,这里也是新的)所以用文字表示:

表格上面有一个菜单栏,上面有"文件/创建"页面/创建按钮"。

下面是一个选项卡控件(在每个用户单击"创建页面"时仅启动1个选项卡并添加选项卡),覆盖整个表单(最多16个选项卡)

区域800x480,用户可以在其中绘制和移动矩形。

在该区域下方另一个选项卡控件(再次启动时仅为1,每次用户单击时添加一个在"创建按钮"上,按钮名称,按钮类型(如下拉列表),显示状态和将更改de的区域等待按钮
类型的选择,并将有大多数其他下降。我打算用"面板"来做这个区域。

在"绘图区域"的右侧,有4个文本框用于选择背景,非活动/活动按钮图形和导出(参见未来更新这是什么)。

I wanted to post a pic but i can not yet (yes, new in here as well) so in words:
The form has a menu bar on top with "File/Create page/Create button".
Below it a tab control (at start only 1 Tab and add a tab each time the user click "create page") that covers the whole form (max 16 tabs)
An area 800x480 where the user can draw and move around rectangles.
Below that area another tab control (again at start up only 1 and add one every time the user click on "create button") with Button name, button type (as drop down), show status and an area that will change depending on the selection in the button type and will have mostly other drop downs. I am planning to do this area with "panels".
On the right of the "drawing area", 4 text boxes to select the background, inactive/active button graphics and export (see future updates for what this are).

灰色区域是面板的屏幕,我想用鼠标创建矩形并像在MS中一样移动/调整它们的大小paint。

每个矩形都与下面Tab控件中的一个按钮相对应,我可以看到数字信息并设置一些参数。


这将是该工具的基本版本。

The gray area is the screen of the panel and I would like to create rectangles with the mouse and move/resize them around like you can do in the MS paint.
Each of this rectangles corrispond to a button in the Tab control below where i can see the numeric informations and set some parameters.
This would be the basic version of the tool.

您是否会使用这种布局来执行此操作,或者您是否会使用mdi具有不同形式的容器形式??

Would you use this kind of layout to do this or would you for example use mdi container form with different forms??

在该工具的未来版本中,我想实现触摸屏对图像的完整预览。

您可以定义3张图像(全部为800x480),一张是背景,一张是地理位置上所有非活动按钮的图像,一张是活动按钮(它们的地理位置太大)。

所以你有一个背景,作为一个层,你有 只有"内部"具有2个其他图片的非活动/活动部分的矩形取决于按钮的状态。

In a future version of the tool, i would like to implement a full preview of what the touchscreen does with images.
You can define 3 images (all 800x480) and one is background, one is the image with all inactive buttons geographically placed and one is the active buttons (them too geographically placed).
So you have a background, on top of it as a layer, you have  only the "inside" of the rectangles with the inactive/active part of the 2 other pictures depending on the state of the button.

如何在VS中执行此操作???

How to do this in VS???

推荐答案

1)要了解Visual Studio(该工具),您可以使用我的网站:

1) To learn about Visual Studio (the tool) you can use my web site:

http://www.visualstudioresources .com

它包含文档,文章,视频,书籍,课程等的链接。

It has links to the docs, articles, videos, books, courses, etc.

2)编程对于触摸屏(iOS / Android / Windows Phone手机或平板电脑),您在Visual Studio中有两个选项:

2) To program something for touchscreens (iOS/Android/Windows Phone mobile phones or tablets) you have two options in Visual Studio:

a)使用Xamarin(现在是Visual Studio的一部分)来创建本机应用程序或Xamarin形式。这些是使用C#和.NET创建的。

a) Use Xamarin (now part of Visual Studio) to create native apps or Xamarin Forms. These are created using C# and .NET.

https://www.xamarin.com/platform

b)使用Visual Studio工具Apache Cordova。这些应用程序是使用Web技术(HTML5,CSS3,Javascript)创建的:

b) Use Visual Studio Tools Apache Cordova. These apps are created using Web technologies (HTML5, CSS3, Javascript):

https:/ /www.visualstudio.com/vs/cordova/


这篇关于初学者正朝着正确的方向和一些问题努力的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆